summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-01-09 21:54:39 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-01-09 21:54:39 (GMT)
commitbb81c8ce3f9c879dac9975fcede878c3fb624002 (patch)
tree3f8ac796d69579053881046c62b5ab4a731a5b4a /Misc/NEWS
parentffeda291153942f643f2a73c6f1dde563c614e42 (diff)
downloadcpython-bb81c8ce3f9c879dac9975fcede878c3fb624002.zip
cpython-bb81c8ce3f9c879dac9975fcede878c3fb624002.tar.gz
cpython-bb81c8ce3f9c879dac9975fcede878c3fb624002.tar.bz2
Merged revisions 77395 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r77395 | benjamin.peterson | 2010-01-09 15:45:28 -0600 (Sat, 09 Jan 2010) | 2 lines Python strings ending with '\0' should not be equivalent to their C counterparts in PyUnicode_CompareWithASCIIString ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS7
1 files changed, 6 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f4583df..c09f8e6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -57,7 +57,6 @@ Core and Builtins
- Issue #6750: A text file opened with io.open() could duplicate its output
when writing from multiple threads at the same time.
-
Library
-------
@@ -280,6 +279,12 @@ Tests
- Issue #7042: Fix test_signal (test_itimer_virtual) failure on OS X 10.6.
+C-API
+-----
+
+- Make PyUnicode_CompareWithASCIIString return not equal if the Python string
+ has '\0' at the end.
+
Build
-----