diff options
author | Martin Panter <vadmium+py@gmail.com> | 2017-01-29 23:37:56 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2017-01-29 23:37:56 (GMT) |
commit | f24bcccefd105843c7d6cb01bfc2207a4c5fab9f (patch) | |
tree | 6bb540ad8e2c72561dcc74d1d41ebb8102d26aa8 | |
parent | d5feb497114c855f2da4dbd0905927cf6fd5515c (diff) | |
download | cpython-f24bcccefd105843c7d6cb01bfc2207a4c5fab9f.zip cpython-f24bcccefd105843c7d6cb01bfc2207a4c5fab9f.tar.gz cpython-f24bcccefd105843c7d6cb01bfc2207a4c5fab9f.tar.bz2 |
Issue #28822: Add susp-ignored entry for NEWS; fix grammar
-rw-r--r-- | Doc/tools/susp-ignored.csv | 1 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Doc/tools/susp-ignored.csv b/Doc/tools/susp-ignored.csv index 166374c..51edb66 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] @@ -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. |