summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2008-12-30 01:36:00 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2008-12-30 01:36:00 (GMT)
commitd465640eb25c0552613b3a0cb172c9cbbb141b7f (patch)
treed8c74ad8ab41d5a747034b6644269924fd1f5271 /Misc
parent0edab54cdf3db733c0c352ec0e21f1dbb53b506b (diff)
downloadcpython-d465640eb25c0552613b3a0cb172c9cbbb141b7f.zip
cpython-d465640eb25c0552613b3a0cb172c9cbbb141b7f.tar.gz
cpython-d465640eb25c0552613b3a0cb172c9cbbb141b7f.tar.bz2
Merged revisions 68051 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r68051 | nick.coghlan | 2008-12-30 11:18:48 +1000 (Tue, 30 Dec 2008) | 1 line Issue #4701: implicitly call PyType_Ready from PyObject_Hash ........
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 f1502e6..c804f29 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6.2
Core and Builtins
-----------------
+- Issue #4701: PyObject_Hash now implicitly calls PyType_Ready on types
+ where the tp_hash and tp_dict slots are both NULL.
+
- Issue #4759: fix a segfault for bytearray.translate(x, None).
- Added test case to ensure attempts to read from a file opened for writing