summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-05-24 08:05:07 -0400
committerBrett Cannon <brett@python.org>2013-05-24 08:05:07 -0400
commitc3511c1dd8737a96d97deb95b799436e8e27a2fa (patch)
tree1514bd689d9218e8df03d77892537344ed0c0e31 /Misc
parent27a4ac535f112b87d91f433eb9edcd0ae9988354 (diff)
downloadcpython-git-c3511c1dd8737a96d97deb95b799436e8e27a2fa.tar.gz
Issue #17953: document that sys.modules shouldn't be replaced (thanks
to interp->modules) and that deleting essential items from the dict can cause Python to blow up. Thanks to Terry Reedy for coming up with initial wording and Yogesh Chaudhari for coming up with a patch using that wording in parallel to my own patch.
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 125b153ee7..54ba363eb3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -59,6 +59,9 @@ Tests
Documentation
-------------
+- Issue #17953: Mention that you shouldn't replace sys.modules and deleting key
+ items will cause Python to not be happy.
+
- Issue #17844: Add links to encoders and decoders for bytes-to-bytes codecs.
- Issue #14097: improve the "introduction" page of the tutorial.