summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-04-06 15:44:57 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-04-06 15:44:57 (GMT)
commitbee1fb0f75331bf5ba97579d75ac623c2edcaa25 (patch)
tree5141b33ce1e910e07ce323fc39be355a5a56a83b /Misc
parentde33ffffed46521a7ffd62350ecfd8f5f7ec8943 (diff)
downloadcpython-bee1fb0f75331bf5ba97579d75ac623c2edcaa25.zip
cpython-bee1fb0f75331bf5ba97579d75ac623c2edcaa25.tar.gz
cpython-bee1fb0f75331bf5ba97579d75ac623c2edcaa25.tar.bz2
Merged revisions 78918,78920 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r78918 | mark.dickinson | 2010-03-13 11:34:40 +0000 (Sat, 13 Mar 2010) | 4 lines Issue #8014: Fix PyLong_As<c-integer-type> methods not to produce an internal error on non-integer input: they now raise TypeError instead. This is needed for attributes declared via PyMemberDefs. ........ r78920 | mark.dickinson | 2010-03-13 13:23:05 +0000 (Sat, 13 Mar 2010) | 3 lines Issue #8014: Fix incorrect error checks in structmember.c, and re-enable previously failing test_structmember.py tests. ........
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 7ba3781..3601cb9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1.3?
Core and Builtins
-----------------
+- Issue #8014: Setting a T_UINT or T_PYSSIZET attribute of an object with
+ PyMemberDefs could produce an internal error; raise TypeError instead.
+
- Raise a TypeError when trying to delete a T_STRING_INPLACE struct member.
- Issue #8226: sys.setfilesystemencoding() raises a LookupError if the encoding