summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2009-04-01 18:13:07 (GMT)
committerBrett Cannon <bcannon@gmail.com>2009-04-01 18:13:07 (GMT)
commit0759dd66c581a65381412a2ff98dac8edd58ddee (patch)
tree92ac5c8ad7f4758201b70d4ecaf5b9888b21b38c /Misc/NEWS
parent86fe876fb5ce8520d915e7b3fa738cb2a09c859d (diff)
downloadcpython-0759dd66c581a65381412a2ff98dac8edd58ddee.zip
cpython-0759dd66c581a65381412a2ff98dac8edd58ddee.tar.gz
cpython-0759dd66c581a65381412a2ff98dac8edd58ddee.tar.bz2
Merged revisions 70965 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r70965 | brett.cannon | 2009-04-01 11:03:59 -0700 (Wed, 01 Apr 2009) | 5 lines _warnings was importing itself to get an attribute. That's bad if warnings gets called in a thread that was spawned by an import itself. Last part to close #1665206. ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 524a79c..2ecd85b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.1 alpha 2?
Core and Builtins
-----------------
+- Issue #1665206: Remove the last eager import in _warnings.c and make it lazy.
+
- Fix a segfault when running test_exceptions with coverage, caused by
insufficient checks in accessors of Exception.__context__.