diff options
author | Gregory P. Smith <greg@krypto.org> | 2020-02-29 01:28:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-29 01:28:37 (GMT) |
commit | 02673352b5db6ca4d3dc804965facbedfe66425d (patch) | |
tree | 24ac954d0b1d8b377fd0de065778717204fe5507 /Misc | |
parent | 03153dd1459fab94f294a118ed1525e34d58601a (diff) | |
download | cpython-02673352b5db6ca4d3dc804965facbedfe66425d.zip cpython-02673352b5db6ca4d3dc804965facbedfe66425d.tar.gz cpython-02673352b5db6ca4d3dc804965facbedfe66425d.tar.bz2 |
bpo-39769: Fix compileall ddir for subpkgs. (GH-18676)
Fix compileall.compile_dir() ddir= behavior on sub-packages.
Fixes compileall.compile_dir's ddir parameter and compileall command
line flag `-d` to no longer write the wrong pathname to the generated
pyc file for submodules beneath the root of the directory tree being
compiled. This fixes a regression introduced with Python 3.5.
Also marks the _new_ in 3.9 from PR #16012 parameters to compile_dir as keyword only (as that is the only way they will be used) and fixes an omission of them in one place from the docs.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-02-27-00-40-21.bpo-39769.hJmxu4.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-02-27-00-40-21.bpo-39769.hJmxu4.rst b/Misc/NEWS.d/next/Library/2020-02-27-00-40-21.bpo-39769.hJmxu4.rst new file mode 100644 index 0000000..9b564bd --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-02-27-00-40-21.bpo-39769.hJmxu4.rst @@ -0,0 +1,4 @@ +The :func:`compileall.compile_dir` function's *ddir* parameter and the +compileall command line flag `-d` no longer write the wrong pathname to the +generated pyc file for submodules beneath the root of the directory tree +being compiled. This fixes a regression introduced with Python 3.5. |