summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-12-31 21:04:50 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-12-31 21:04:50 (GMT)
commit33ef1aeb1efd7a39c3ac8c4c771fde964ddd7807 (patch)
tree56fd02e27c151d33b6089b2694d79bfa4ca48021 /Misc
parent8b2d68245e5c6721fc7295588570d15830e14a34 (diff)
downloadcpython-33ef1aeb1efd7a39c3ac8c4c771fde964ddd7807.zip
cpython-33ef1aeb1efd7a39c3ac8c4c771fde964ddd7807.tar.gz
cpython-33ef1aeb1efd7a39c3ac8c4c771fde964ddd7807.tar.bz2
whatsnew: mock called_with improvements, socket CAN_BCM support.
Also reworded the other entries in the socket section of whatsnew, as well as a couple of unrelated news entries.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS8
1 files changed, 4 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5129316..4fecb53 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2474,12 +2474,12 @@ Library
- Issue #17132: Update symbol for "yield from" grammar changes.
-- Issue #17076: Make copying of xattrs more permissive of missing FS support.
+- Issue #17076: Make copying of xattrs more tolerant of missing FS support.
Patch by Thomas Wouters.
-- Issue #17089: Expat parser now correctly works with string input not only when
- an internal XML encoding is UTF-8 or US-ASCII. It now accepts bytes and
- strings larger than 2 GiB.
+- Issue #17089: Expat parser now correctly works with string input when the
+ internal XML encoding is not UTF-8 or US-ASCII. It also now accepts bytes
+ and strings larger than 2 GiB.
- Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple
parses nested mutating sequence.