summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-01-18 19:16:09 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-01-18 19:16:09 (GMT)
commit6c40eb7f421804eba3c24a9336c4a9e59dba636c (patch)
tree7b5220e29f6c927c8834728d890f47227e79f409 /Misc
parent0c60381749cfb9af804cf3f961a110797ee192d9 (diff)
downloadcpython-6c40eb7f421804eba3c24a9336c4a9e59dba636c.zip
cpython-6c40eb7f421804eba3c24a9336c4a9e59dba636c.tar.gz
cpython-6c40eb7f421804eba3c24a9336c4a9e59dba636c.tar.bz2
Fix the builtin module initialization code to store the init function for future reinitialization.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b3c5b88..d6728be 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.3?
Core and Builtins
-----------------
+- Fix the builtin module initialization code to store the init function for
+ future reinitialization.
+
- Issue #13629: Renumber the tokens in token.h so that they match the indexes
into _PyParser_TokenNames.