1. cee93c3 Issue #28485: Merge single-threading fix from 3.5 into 3.6 by Martin Panter · 8 years ago
  2. 88281ce Issue #28485: Check for negative workers even without ProcessPoolExecutor by Martin Panter · 8 years ago
  3. 812a2b6 Issue #28226: compileall now supports pathlib by Berker Peksag · 8 years ago
  4. 1e3c3e9 Issue #25768: Make compileall functions return booleans and document by Brett Cannon · 8 years ago
  5. 939614c Merge: #24903: Remove misleading error message to fix regression. by R David Murray · 8 years ago
  6. ced699b #24903: Remove misleading error message to fix regression. by R David Murray · 8 years ago
  7. d86ef05 Issue #23917: Fall back to sequential compilation when ProcessPoolExecutor doesn't exist. by Berker Peksag · 9 years ago
  8. f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 9 years ago
  9. 6554b86 Issue #21338: Add silent mode for compileall. by Berker Peksag · 10 years ago
  10. f1a8df0 Issue #16104: Allow compileall to do parallel bytecode compilation. by Brett Cannon · 10 years ago
  11. 344ff4a allow recursion depth to be specified (closes #19628) by Benjamin Peterson · 10 years ago
  12. 7fa767e Issue #20976: pyflakes: Remove unused imports by Victor Stinner · 10 years ago
  13. 755d5ea Merge: #19532: make compileall with no file/dir args respect -f and -q. by R David Murray · 10 years ago
  14. 8a1d1e6 #19532: make compileall with no file/dir args respect -f and -q. by R David Murray · 10 years ago
  15. 7822e12 Issue #17177: stop using imp for compileall. by Brett Cannon · 11 years ago
  16. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 11 years ago
  17. ad28c7f Issue #16706: get rid of os.error by Andrew Svetlov · 11 years ago
  18. 3438fa4 Get rig of EnvironmentError (#16705) by Andrew Svetlov · 11 years ago
  19. 3b371cf #10454: a few edits to compileall help messages by Éric Araujo · 13 years ago
  20. 5307126 Issue #11169: compileall module uses repr() to format filenames and paths to by Victor Stinner · 13 years ago
  21. 4543846 #11132: pass optimize parameter to recursive call in compileall.compile_dir(). Reviewed by Eric A. by Georg Brandl · 13 years ago
  22. 413d7b4 Nits: use a real boolean, make one docstring more similar to the other ones by Éric Araujo · 13 years ago
  23. 94f58c3 #10454: clarify the compileall docs and help messages. by R. David Murray · 13 years ago
  24. 5317e9c #10719: restore messages generated on invalid compileall args by R. David Murray · 13 years ago
  25. 95333e3 More comprehensive compileall cli tests, and fixes. by R. David Murray · 13 years ago
  26. 8334fd9 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. by Georg Brandl · 13 years ago
  27. 2e579f0 Fix typos and style in compileall. by Éric Araujo · 14 years ago
  28. 650f147 #10453: compileall now uses argparse instead of getopt, so -h works. by R. David Murray · 14 years ago
  29. 25216ba Create __pycache__ dir when the pyc path is explicitly given by Benjamin Peterson · 14 years ago
  30. c8a99de Bug 8563 - compileall.compile_file() creates empty __pycache__ directories in by Barry Warsaw · 14 years ago
  31. c04317f Bug 8527 - multiple compileall calls produce cascading __pycache__ directories. by Barry Warsaw · 14 years ago
  32. 28a691b PEP 3147 by Barry Warsaw · 14 years ago
  33. 886af96 Merged revisions 78966,78970,79018,79026-79027,79055,79156,79159,79163-79164,79173,79176,79194,79208,79212 via svnmerge from by Benjamin Peterson · 14 years ago
  34. 4b00307 Issue #6716/2: Backslash-replace error output in compilall. by Martin v. Löwis · 14 years ago
  35. c33b902 Merged revisions 78983,78985 via svnmerge from by Matthias Klose · 14 years ago
  36. 769ba47 Merged revisions 71750 via svnmerge from by Mark Dickinson · 15 years ago
  37. befb14f Merged revisions 69481 via svnmerge from by Brett Cannon · 15 years ago
  38. 7864476 Merged revisions 61209-61214,61217-61222,61224-61226,61233-61237 via svnmerge from by Christian Heimes · 16 years ago
  39. b7d3e65 Improve error handling; don't die from unicode errors or syntax errors. by Guido van Rossum · 17 years ago
  40. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  41. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 17 years ago
  42. 7b4b788 Bugs item #1069409 C:\Python24\Lib\compileall.py returns False by Raymond Hettinger · 19 years ago
  43. 873a277 Patch #975885: print file name in err msg in quiet mode by Martin v. Löwis · 20 years ago
  44. 4651f53 Fix typo in docstring: The switch is '-x', not '-s'. by Thomas Heller · 21 years ago
  45. 6f2adc7 Catch IOErrors. by Martin v. Löwis · 21 years ago
  46. 0c6774d Patch #661719: Expose compilation errors as exceptions on request. by Martin v. Löwis · 21 years ago
  47. 32200ae Replaced obsolete stat module constants with equivalent attributes by Raymond Hettinger · 22 years ago
  48. 8989ea6 Use is None rather than general boolean by Raymond Hettinger · 22 years ago
  49. 5c137c2 Patch #495598: add an -q (quiet) option to pycompile. by Martin v. Löwis · 22 years ago
  50. 12b6457 Fix compileall.py so that it fails on SyntaxErrors by Jeremy Hylton · 23 years ago
  51. e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 23 years ago
  52. 9065ea3 When run as a script, report failures in the exit code as well. by Fred Drake · 25 years ago
  53. 0b56a3e A mod whose author I forget. (I must've mislaid the email. If it's by Guido van Rossum · 25 years ago
  54. 45e2fbc Mass check-in after untabifying all files that need it. by Guido van Rossum · 26 years ago
  55. c567b81 Revamped, to match py_compile.py: by Guido van Rossum · 26 years ago
  56. 68f56e4 Don't trip over empty string in sys.path. by Guido van Rossum · 28 years ago
  57. c7acf2a handle class exceptions by Guido van Rossum · 29 years ago
  58. 3bb5448 New way of generating .pyc files, thanks to Sjoerd. by Guido van Rossum · 30 years ago