diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-04-01 18:13:07 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-04-01 18:13:07 (GMT) |
commit | 0759dd66c581a65381412a2ff98dac8edd58ddee (patch) | |
tree | 92ac5c8ad7f4758201b70d4ecaf5b9888b21b38c /Misc | |
parent | 86fe876fb5ce8520d915e7b3fa738cb2a09c859d (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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__. |