summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-01-11 23:09:25 (GMT)
committerBrett Cannon <brett@python.org>2013-01-11 23:09:25 (GMT)
commit569ff4fbbc4cd0589c369519745d8d17bf3094b0 (patch)
tree7d14a97da79993fd7e4170fc6ab3dff21190933b /Misc
parent77173c01c94bb7df50a732ac7413bbafcad842e3 (diff)
downloadcpython-569ff4fbbc4cd0589c369519745d8d17bf3094b0.zip
cpython-569ff4fbbc4cd0589c369519745d8d17bf3094b0.tar.gz
cpython-569ff4fbbc4cd0589c369519745d8d17bf3094b0.tar.bz2
Issue #15031: Refactor some code in importlib pertaining to validating
and compiling bytecode. Thanks to Ronan Lamy for pointing the redundancy and taking an initial stab at the refactor (as did Nick Coghlan).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4147b83..fcd309d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -217,6 +217,10 @@ Core and Builtins
Library
-------
+- Issue #15031: Refactor some .pyc management code to cut down on code
+ duplication. Thanks to Ronan Lamy for the report and taking an initial stab
+ at the problem.
+
- Issue #16900: Issue a ResourceWarning when an ssl socket is left unclosed.
- Issue #13899: \A, \Z, and \B now correctly match the A, Z, and B literals