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

Lines Matching refs:fullname

44         fullname = os.path.join(dir, name)
46 fullname = fullname.replace('\\','/')
51 if not os.path.isdir(fullname):
52 if not compile_file(fullname, ddir, force, rx, quiet):
56 os.path.isdir(fullname) and \
57 not os.path.islink(fullname):
58 if not compile_dir(fullname, maxlevels - 1, dfile, force, rx,
63 def compile_file(fullname, ddir=None, force=0, rx=None, quiet=0):
66 Arguments (only fullname is required):
68 fullname: the file to byte-compile
75 name = os.path.basename(fullname)
81 mo = rx.search(fullname)
84 if os.path.isfile(fullname):
89 mtime = int(os.stat(fullname).st_mtime)
91 cfile = fullname + (__debug__ and 'c' or 'o')
99 print 'Compiling', fullname, '...'
101 ok = py_compile.compile(fullname, None, dfile, True)
104 print 'Compiling', fullname, '...'