summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2011-04-20 15:59:29 (GMT)
committerJesus Cea <jcea@jcea.es>2011-04-20 15:59:29 (GMT)
commitc1ceb64e41082282f2e3d28065f5ae1e03fa78ae (patch)
tree10833669b6f7cddc7d9dae47b72e29bf69e76748 /Misc
parent5e66b167ff5c6c48385777a6b9b9931bfc2bc2cf (diff)
parent6159ee3cf59b3fd8fcf9818c0a8071362d1ad7c2 (diff)
downloadcpython-c1ceb64e41082282f2e3d28065f5ae1e03fa78ae.zip
cpython-c1ceb64e41082282f2e3d28065f5ae1e03fa78ae.tar.gz
cpython-c1ceb64e41082282f2e3d28065f5ae1e03fa78ae.tar.bz2
MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index f3555f3..33d90ff 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -67,6 +67,7 @@ Donald Beaudry
David Beazley
Robin Becker
Neal Becker
+Torsten Becker
Bill Bedford
Stefan Behnel
Reimer Behrends
diff --git a/Misc/NEWS b/Misc/NEWS
index 7cb812c..be70b8a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -88,6 +88,9 @@ Core and Builtins
- Issue #11272: On Windows, input() strips '\r' (and not only '\n'), and
sys.stdin uses universal newline (replace '\r\n' by '\n').
+- issue #11828: startswith and endswith don't accept None as slice index.
+ Patch by Torsten Becker.
+
- Issue #10830: Fix PyUnicode_FromFormatV("%c") for non-BMP characters on
narrow build.