summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-07-18 08:50:32 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-07-18 08:50:32 (GMT)
commit721e9aa425b9603a630f38694e8cfae15e4420bb (patch)
treebe8415217274a68a9a336e27867925f91098ef0d
parente607b3353c85257a399ee98fb1b001188edddd9d (diff)
downloadcpython-721e9aa425b9603a630f38694e8cfae15e4420bb.zip
cpython-721e9aa425b9603a630f38694e8cfae15e4420bb.tar.gz
cpython-721e9aa425b9603a630f38694e8cfae15e4420bb.tar.bz2
Merged revisions 82947 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82947 | mark.dickinson | 2010-07-18 09:03:10 +0100 (Sun, 18 Jul 2010) | 1 line Clarify Misc/NEWS entry. ........
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3a69985..9ea62b9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -755,8 +755,8 @@ 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.
+ then that exception wasn't properly propagated on machines where
+ char is unsigned.
- Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x
python when they contain instances of old-style classes.