index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
compileall.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-105931: Fix surprising compileall stripdir behaviour (GH-108671)
hetmankp
2023-10-23
1
-6/+6
*
GH-84559: Deprecate fork being the multiprocessing default. (#100618)
Gregory P. Smith
2023-02-02
1
-1/+7
*
bpo-40447: accept all path-like objects in compileall.compile_file (#19883)
Filipe Laíns
2022-12-23
1
-2/+2
*
Fixed documentation typo in compileall.py (GH-29912)
Vishal Pandey
2021-12-04
1
-1/+1
*
Fix missing space with help for `-m compileall -o` (GH-27591)
Daniel Hahler
2021-09-17
1
-3/+3
*
bpo-34990: Treat the pyc header's mtime in compileall as an unsigned int (GH-...
Ammar Askar
2021-08-24
1
-2/+2
*
bpo-44666: Use default encoding as fallback for compile_file (GH-27236)
Stefan Hoelzl
2021-07-30
1
-3/+2
*
bpo-43651: Fix test_compileall with PEP 597 (GH-25128)
Inada Naoki
2021-04-02
1
-1/+2
*
bpo-40692: Run more test_concurrent_futures tests (GH-20239)
Asheesh Laroia
2021-02-08
1
-4/+6
*
bpo-40495: compileall option to hardlink duplicate pyc files (GH-19901)
Lumír 'Frenzy' Balhar
2020-05-14
1
-7/+35
*
compileall: Fix typos in docstring (GH-19810)
Jelle Zijlstra
2020-04-30
1
-2/+2
*
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
[next]