Home | History | Annotate | Download | only in python2.7

Lines Matching refs:ddir

21 def compile_dir(dir, maxlevels=10, ddir=None,
29 ddir: the directory that will be prepended to the path to the
47 if ddir is not None:
48 dfile = os.path.join(ddir, name)
52 if not compile_file(fullname, ddir, force, rx, quiet):
63 def compile_file(fullname, ddir=None, force=0, rx=None, quiet=0):
69 ddir: if given, the directory name compiled in to the
76 if ddir is not None:
77 dfile = os.path.join(ddir, name)
185 ddir = None
192 if o == '-d': ddir = a
199 if ddir:
214 if not compile_dir(arg, maxlevels, ddir,
218 if not compile_file(arg, ddir, force, rx, quiet):