summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2017-01-29 23:37:56 +0000
committerMartin Panter <vadmium+py@gmail.com>2017-01-29 23:37:56 +0000
commitd9e1aed451707c1b36cc0d55874c03c490d11150 (patch)
treea520a5f62c9fb0dec04e43acd3b140a0ea535de7
parent77aa96b43a2553060b5b5e60c932f4517b4b4545 (diff)
downloadcpython-d9e1aed451707c1b36cc0d55874c03c490d11150.tar.gz
Issue #28822: Add susp-ignored entry for NEWS; fix grammar
-rw-r--r--Doc/tools/susp-ignored.csv1
-rw-r--r--Misc/NEWS2
2 files changed, 2 insertions, 1 deletions
diff --git a/Doc/tools/susp-ignored.csv b/Doc/tools/susp-ignored.csv
index 166374cb90..51edb66238 100644
--- a/Doc/tools/susp-ignored.csv
+++ b/Doc/tools/susp-ignored.csv
@@ -325,3 +325,4 @@ whatsnew/3.5,,:root,ERROR:root:exception
whatsnew/3.5,,:exception,ERROR:root:exception
whatsnew/changelog,,:version,import sys; I = version[:version.index(' ')]
whatsnew/changelog,,`,"for readability (was ""`"")."
+whatsnew/changelog,,:end,str[start:end]
diff --git a/Misc/NEWS b/Misc/NEWS
index 56c94c3152..82654602d0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -641,7 +641,7 @@ C API
available only when Py_LIMITED_API is set to the PY_VERSION_HEX value of
the minimum Python version supporting this API.
-- Issue #28822: The indices parameters *start* and *end* of PyUnicode_FindChar()
+- Issue #28822: The index parameters *start* and *end* of PyUnicode_FindChar()
are now adjusted to behave like ``str[start:end]``.
- Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions.