diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-08-15 13:23:05 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-08-15 13:23:05 (GMT) |
commit | 1432771d55b286ad3d14115a002195ff75cedae2 (patch) | |
tree | a8468a74151bb0b64a996256f4579d666d0939a7 /Misc | |
parent | 1fff00832639082d2d7aa354c8e6d9110171d6bc (diff) | |
download | cpython-1432771d55b286ad3d14115a002195ff75cedae2.zip cpython-1432771d55b286ad3d14115a002195ff75cedae2.tar.gz cpython-1432771d55b286ad3d14115a002195ff75cedae2.tar.bz2 |
Merged revisions 74457 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74457 | benjamin.peterson | 2009-08-15 08:16:38 -0500 (Sat, 15 Aug 2009) | 1 line
#6707 fix a crash with dir() on an uninitialized module
........
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.2 Alpha 1? Core and Builtins ----------------- +- Issue #6707: dir() on an uninitialized module caused a crash. + - Issue #6540: Fixed crash for bytearray.translate() with invalid parameters. - Issue #6573: set.union() stopped processing inputs if an instance of self |