summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_compileall.py
Commit message (Collapse)AuthorAgeFilesLines
* - Issue #8140: extend compileall to compile single files. Add -i option.Matthias Klose2010-03-151-0/+19
|
* Remove unused imports in test modules.Georg Brandl2010-02-071-2/+0
|
* compileall used the ctime of bytecode and source to determine if the bytecodeBrett Cannon2009-02-101-0/+63
should be recreated. This created a timing hole. Fixed by just doing what import does; check the mtime and magic number.