summaryrefslogtreecommitdiff
path: root/Lib/compileall.py
Commit message (Expand)AuthorAgeFilesLines
* GH-84559: Deprecate fork being the multiprocessing default. (#100618)Gregory P. Smith2023-02-021-1/+7
* bpo-40447: accept all path-like objects in compileall.compile_file (#19883)Filipe Laíns2022-12-231-2/+2
* Fixed documentation typo in compileall.py (GH-29912)Vishal Pandey2021-12-051-1/+1
* Fix missing space with help for `-m compileall -o` (GH-27591)Daniel Hahler2021-09-181-3/+3
* bpo-34990: Treat the pyc header's mtime in compileall as an unsigned int (GH-...Ammar Askar2021-08-241-2/+2
* bpo-44666: Use default encoding as fallback for compile_file (GH-27236)Stefan Hoelzl2021-07-301-3/+2
* bpo-43651: Fix test_compileall with PEP 597 (GH-25128)Inada Naoki2021-04-021-1/+2
* bpo-40692: Run more test_concurrent_futures tests (GH-20239)Asheesh Laroia2021-02-081-4/+6
* bpo-40495: compileall option to hardlink duplicate pyc files (GH-19901)Lumír 'Frenzy' Balhar2020-05-141-7/+35
* compileall: Fix typos in docstring (GH-19810)Jelle Zijlstra2020-04-301-2/+2
* bpo-39769: Fix compileall ddir for subpkgs. (GH-18676)Gregory P. Smith2020-02-281-2/+9
* bpo-38470: Fix test_compileall.test_compile_dir_maxlevels() (GH-16789)Victor Stinner2019-10-151-5/+5
* bpo-38112: Compileall improvements (GH-16012)Lumír 'Frenzy' Balhar2019-09-261-38/+136
* bpo-36786: Run compileall in parallel during "make install" (GH-13078)Antoine Pitrou2019-05-151-14/+11
* bpo-29877: compileall: import ProcessPoolExecutor only when needed (GH-4856)Dustin Spicuzza2018-11-231-7/+11
* bpo-34022: Stop forcing of hash-based invalidation with SOURCE_DATE_EPOCH (GH...Elvis Pranskevichus2018-10-101-7/+13
* closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575)Benjamin Peterson2017-12-091-15/+41
* Issue #28485: Merge single-threading fix from 3.5 into 3.6Martin Panter2016-11-051-3/+3
|\
| * Issue #28485: Check for negative workers even without ProcessPoolExecutorMartin Panter2016-11-051-3/+3
* | Issue #28226: compileall now supports pathlibBerker Peksag2016-10-011-0/+4
* | Issue #25768: Make compileall functions return booleans and documentBrett Cannon2015-12-271-8/+8
|/
* Merge: #24903: Remove misleading error message to fix regression.R David Murray2015-12-041-3/+0
|\
| * #24903: Remove misleading error message to fix regression.R David Murray2015-12-041-3/+0
* | Issue #23917: Fall back to sequential compilation when ProcessPoolExecutor do...Berker Peksag2015-04-221-3/+1
* | Issue #23731: Implement PEP 488.Brett Cannon2015-04-131-3/+4
* | Issue #21338: Add silent mode for compileall.Berker Peksag2014-10-151-17/+28
* | Issue #16104: Allow compileall to do parallel bytecode compilation.Brett Cannon2014-09-121-23/+56
* | allow recursion depth to be specified (closes #19628)Benjamin Peterson2014-08-191-1/+11
|/
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-1/+0
* Merge: #19532: make compileall with no file/dir args respect -f and -q.R David Murray2013-12-151-1/+2
|\
| * #19532: make compileall with no file/dir args respect -f and -q.R David Murray2013-12-151-1/+2
* | Issue #17177: stop using imp for compileall.Brett Cannon2013-06-141-5/+6
* | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-2/+2
* | Issue #16706: get rid of os.errorAndrew Svetlov2012-12-181-1/+1
* | Get rig of EnvironmentError (#16705)Andrew Svetlov2012-12-171-1/+1
|/
* #10454: a few edits to compileall help messagesÉric Araujo2011-09-011-7/+7
* Issue #11169: compileall module uses repr() to format filenames and paths toVictor Stinner2011-05-111-5/+5
* #11132: pass optimize parameter to recursive call in compileall.compile_dir()...Georg Brandl2011-02-071-1/+1
* Nits: use a real boolean, make one docstring more similar to the other onesÉric Araujo2010-12-231-2/+5
* #10454: clarify the compileall docs and help messages.R. David Murray2010-12-171-15/+22
* #10719: restore messages generated on invalid compileall argsR. David Murray2010-12-161-5/+5
* More comprehensive compileall cli tests, and fixes.R. David Murray2010-12-141-14/+20
* Add an "optimize" parameter to compile() to control the optimization level, a...Georg Brandl2010-12-041-8/+17
* Fix typos and style in compileall.Éric Araujo2010-11-201-18/+12
* #10453: compileall now uses argparse instead of getopt, so -h works.R. David Murray2010-11-201-77/+55
* Create __pycache__ dir when the pyc path is explicitly givenBenjamin Peterson2010-05-081-6/+0
* Bug 8563 - compileall.compile_file() creates empty __pycache__ directories inBarry Warsaw2010-04-291-5/+6
* Bug 8527 - multiple compileall calls produce cascading __pycache__ directories.Barry Warsaw2010-04-261-0/+2
* PEP 3147Barry Warsaw2010-04-171-26/+48
* Merged revisions 78966,78970,79018,79026-79027,79055,79156,79159,79163-79164,...Benjamin Peterson2010-03-211-2/+0