diff options
author | Trent Nelson <trent@trent.me> | 2012-10-16 11:47:34 (GMT) |
---|---|---|
committer | Trent Nelson <trent@trent.me> | 2012-10-16 11:47:34 (GMT) |
commit | d783c8ed00e251053a10f48a25fbd9b7944e7000 (patch) | |
tree | 5256afb504a65eac867c3087a6fe24b4d8037cbc /Misc | |
parent | 03cb99c2d11da44304e67281f3e2e87b1cc17254 (diff) | |
download | cpython-d783c8ed00e251053a10f48a25fbd9b7944e7000.zip cpython-d783c8ed00e251053a10f48a25fbd9b7944e7000.tar.gz cpython-d783c8ed00e251053a10f48a25fbd9b7944e7000.tar.bz2 |
Issue #15833: don't raise an exception if importlib can't write byte-compiled
files.
This fixes a regression introduced by 3.3. Patch by Charles-François Natali.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -127,6 +127,10 @@ Tests Build ----- +- Issue #15833: Fix a regression in 3.3 that resulted in exceptions being + raised if importlib failed to write byte-compiled files. This affected + attempts to build Python out-of-tree from a read-only source directory. + - Issue #15923: Fix a mistake in ``asdl_c.py`` that resulted in a TypeError after 2801bf875a24 (see #15801). |