summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-10-12 22:57:59 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-10-12 22:57:59 (GMT)
commit5c4bfc4af070c5c62f76cf3c2d23a19e7c794c4e (patch)
treebf62941930ba384c45a44d598e24566caa24e070 /Misc
parent11b1f3dac14f72d7406c96fd7b749ebd8cc16bc9 (diff)
downloadcpython-5c4bfc4af070c5c62f76cf3c2d23a19e7c794c4e.zip
cpython-5c4bfc4af070c5c62f76cf3c2d23a19e7c794c4e.tar.gz
cpython-5c4bfc4af070c5c62f76cf3c2d23a19e7c794c4e.tar.bz2
prefer clearing global objects to obscure module.__dict__ bugs #10068
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 8ff3f3b..0b7d77c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,9 @@ What's New in Python 3.2 Alpha 3?
Core and Builtins
-----------------
+- Issue #10068: Global objects which have reference cycles with their module's
+ dict are now cleared again. This causes issue #7140 to appear again.
+
- Issue #9738: Document PyErr_SetString() and PyErr_SetFromErrnoWithFilename()
encodings.