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
........
diff --git a/Misc/NEWS b/Misc/NEWS
index f4583df..c09f8e6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -57,7 +57,6 @@
 - 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 @@
 
 - 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
 -----