summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-01-18 19:17:58 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-01-18 19:17:58 (GMT)
commit165e01f83f64061fc66440e2e13b095d4ce9c755 (patch)
tree4d892da5751bb3ba0ce70bc15cead6ad61821011 /Misc
parentaf5facc4cace578700ae2b74524c62e8790d4763 (diff)
parent6c40eb7f421804eba3c24a9336c4a9e59dba636c (diff)
downloadcpython-165e01f83f64061fc66440e2e13b095d4ce9c755.zip
cpython-165e01f83f64061fc66440e2e13b095d4ce9c755.tar.gz
cpython-165e01f83f64061fc66440e2e13b095d4ce9c755.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 d8e5255..bf5efba 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
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.