summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-07-18 07:51:41 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-07-18 07:51:41 (GMT)
commite607b3353c85257a399ee98fb1b001188edddd9d (patch)
treec1839230316d77179bec5161ce6e9f0e9038e5ea /Misc/NEWS
parent101d16cb14ea046893c4016c643daafa4605d3c7 (diff)
downloadcpython-e607b3353c85257a399ee98fb1b001188edddd9d.zip
cpython-e607b3353c85257a399ee98fb1b001188edddd9d.tar.gz
cpython-e607b3353c85257a399ee98fb1b001188edddd9d.tar.bz2
Merged revisions 82943 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82943 | mark.dickinson | 2010-07-18 08:48:20 +0100 (Sun, 18 Jul 2010) | 1 line Misc/NEWS entry for r82941. ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b841de3..3a69985 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -753,6 +753,11 @@ Library
Extension Modules
-----------------
+- Issue #9277: Fix bug in struct.pack for bools in standard mode
+ (e.g., struct.pack('>?')): if conversion to bool raised an exception
+ then that exception wasn't properly propagated on machines with
+ unsigned char.
+
- Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x
python when they contain instances of old-style classes.