| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-39769: Fix compileall ddir for subpkgs. (GH-18676) | Gregory P. Smith | 2020-02-29 | 1 | -2/+9 |
|
|
* | bpo-38470: Fix test_compileall.test_compile_dir_maxlevels() (GH-16789) | Victor Stinner | 2019-10-15 | 1 | -5/+5 |
|
|
* | bpo-38112: Compileall improvements (GH-16012) | Lumír 'Frenzy' Balhar | 2019-09-26 | 1 | -38/+136 |
|
|
* | bpo-36786: Run compileall in parallel during "make install" (GH-13078) | Antoine Pitrou | 2019-05-15 | 1 | -14/+11 |
|
|
* | bpo-29877: compileall: import ProcessPoolExecutor only when needed (GH-4856) | Dustin Spicuzza | 2018-11-23 | 1 | -7/+11 |
|
|
* | bpo-34022: Stop forcing of hash-based invalidation with SOURCE_DATE_EPOCH (GH... | Elvis Pranskevichus | 2018-10-10 | 1 | -7/+13 |
|
|
* | closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575) | Benjamin Peterson | 2017-12-09 | 1 | -15/+41 |
|
|
* | Issue #28485: Merge single-threading fix from 3.5 into 3.6 | Martin Panter | 2016-11-05 | 1 | -3/+3 |
|\ |
|
| * | Issue #28485: Check for negative workers even without ProcessPoolExecutor | Martin Panter | 2016-11-05 | 1 | -3/+3 |
|
|
* | | Issue #28226: compileall now supports pathlib | Berker Peksag | 2016-09-30 | 1 | -0/+4 |
|
|
* | | Issue #25768: Make compileall functions return booleans and document | Brett Cannon | 2015-12-27 | 1 | -8/+8 |
|/ |
|
* | Merge: #24903: Remove misleading error message to fix regression. | R David Murray | 2015-12-05 | 1 | -3/+0 |
|\ |
|
| * | #24903: Remove misleading error message to fix regression. | R David Murray | 2015-12-05 | 1 | -3/+0 |
|
|
* | | Issue #23917: Fall back to sequential compilation when ProcessPoolExecutor do... | Berker Peksag | 2015-04-22 | 1 | -3/+1 |
|
|
* | | Issue #23731: Implement PEP 488. | Brett Cannon | 2015-04-13 | 1 | -3/+4 |
|
|
* | | Issue #21338: Add silent mode for compileall. | Berker Peksag | 2014-10-15 | 1 | -17/+28 |
|
|
* | | Issue #16104: Allow compileall to do parallel bytecode compilation. | Brett Cannon | 2014-09-12 | 1 | -23/+56 |
|
|
* | | allow recursion depth to be specified (closes #19628) | Benjamin Peterson | 2014-08-19 | 1 | -1/+11 |
|/ |
|
* | Issue #20976: pyflakes: Remove unused imports | Victor Stinner | 2014-03-20 | 1 | -1/+0 |
|
|
* | Merge: #19532: make compileall with no file/dir args respect -f and -q. | R David Murray | 2013-12-16 | 1 | -1/+2 |
|\ |
|
| * | #19532: make compileall with no file/dir args respect -f and -q. | R David Murray | 2013-12-16 | 1 | -1/+2 |
|
|
* | | Issue #17177: stop using imp for compileall. | Brett Cannon | 2013-06-15 | 1 | -5/+6 |
|
|
* | | Replace IOError with OSError (#16715) | Andrew Svetlov | 2012-12-25 | 1 | -2/+2 |
|
|
* | | Issue #16706: get rid of os.error | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
|
|
* | | Get rig of EnvironmentError (#16705) | Andrew Svetlov | 2012-12-17 | 1 | -1/+1 |
|/ |
|
* | #10454: a few edits to compileall help messages | Éric Araujo | 2011-09-01 | 1 | -7/+7 |
|
|
* | Issue #11169: compileall module uses repr() to format filenames and paths to | Victor Stinner | 2011-05-10 | 1 | -5/+5 |
|
|
* | #11132: pass optimize parameter to recursive call in compileall.compile_dir()... | Georg Brandl | 2011-02-07 | 1 | -1/+1 |
|
|
* | Nits: use a real boolean, make one docstring more similar to the other ones | Éric Araujo | 2010-12-23 | 1 | -2/+5 |
|
|
* | #10454: clarify the compileall docs and help messages. | R. David Murray | 2010-12-17 | 1 | -15/+22 |
|
|
* | #10719: restore messages generated on invalid compileall args | R. David Murray | 2010-12-16 | 1 | -5/+5 |
|
|
* | More comprehensive compileall cli tests, and fixes. | R. David Murray | 2010-12-14 | 1 | -14/+20 |
|
|
* | Add an "optimize" parameter to compile() to control the optimization level, a... | Georg Brandl | 2010-12-04 | 1 | -8/+17 |
|
|
* | Fix typos and style in compileall. | Éric Araujo | 2010-11-20 | 1 | -18/+12 |
|
|
* | #10453: compileall now uses argparse instead of getopt, so -h works. | R. David Murray | 2010-11-20 | 1 | -77/+55 |
|
|
* | Create __pycache__ dir when the pyc path is explicitly given | Benjamin Peterson | 2010-05-08 | 1 | -6/+0 |
|
|
* | Bug 8563 - compileall.compile_file() creates empty __pycache__ directories in | Barry Warsaw | 2010-04-29 | 1 | -5/+6 |
|
|
* | Bug 8527 - multiple compileall calls produce cascading __pycache__ directories. | Barry Warsaw | 2010-04-26 | 1 | -0/+2 |
|
|
* | PEP 3147 | Barry Warsaw | 2010-04-17 | 1 | -26/+48 |
|
|
* | Merged revisions 78966,78970,79018,79026-79027,79055,79156,79159,79163-79164,... | Benjamin Peterson | 2010-03-21 | 1 | -2/+0 |
|
|
* | Issue #6716/2: Backslash-replace error output in compilall. | Martin v. Löwis | 2010-03-16 | 1 | -1/+4 |
|
|
* | Merged revisions 78983,78985 via svnmerge from | Matthias Klose | 2010-03-16 | 1 | -50/+102 |
|
|
* | Merged revisions 71750 via svnmerge from | Mark Dickinson | 2009-04-19 | 1 | -1/+1 |
|
|
* | Merged revisions 69481 via svnmerge from | Brett Cannon | 2009-02-10 | 1 | -7/+15 |
|
|
* | Merged revisions 61209-61214,61217-61222,61224-61226,61233-61237 via svnmerge... | Christian Heimes | 2008-03-04 | 1 | -1/+1 |
|
|
* | Improve error handling; don't die from unicode errors or syntax errors. | Guido van Rossum | 2007-07-15 | 1 | -3/+9 |
|
|
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 1 | -19/+19 |
|
|
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -3/+3 |
|
|
* | Bugs item #1069409 C:\Python24\Lib\compileall.py returns False | Raymond Hettinger | 2004-12-20 | 1 | -1/+1 |
|
|
* | Patch #975885: print file name in err msg in quiet mode | Martin v. Löwis | 2004-06-20 | 1 | -0/+2 |
|
|