Lines Matching full:fullname
44 fullname = os.path.join(dir, name)
49 if not os.path.isdir(fullname):
50 if not compile_file(fullname, ddir, force, rx, quiet):
54 os.path.isdir(fullname) and \
55 not os.path.islink(fullname):
56 if not compile_dir(fullname, maxlevels - 1, dfile, force, rx,
61 def compile_file(fullname, ddir=None, force=0, rx=None, quiet=0): argument
64 Arguments (only fullname is required):
66 fullname: the file to byte-compile
73 name = os.path.basename(fullname)
79 mo = rx.search(fullname)
82 if os.path.isfile(fullname):
87 mtime = int(os.stat(fullname).st_mtime)
89 cfile = fullname + (__debug__ and 'c' or 'o')
97 print 'Compiling', fullname, '...'
99 ok = py_compile.compile(fullname, None, dfile, True)
102 print 'Compiling', fullname, '...'