summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2011-04-20 14:39:15 (GMT)
committerJesus Cea <jcea@jcea.es>2011-04-20 14:39:15 (GMT)
commit44e81687a22b5890e9fddc80de6afaeb1757aa6d (patch)
tree5b837a03a91c87e73e883bef0e6cb7f340a9105e /Misc
parent0d654335689b88defdc6403624e3bfa8c0fd108b (diff)
downloadcpython-44e81687a22b5890e9fddc80de6afaeb1757aa6d.zip
cpython-44e81687a22b5890e9fddc80de6afaeb1757aa6d.tar.gz
cpython-44e81687a22b5890e9fddc80de6afaeb1757aa6d.tar.bz2
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 cc33061..c8e7e62 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -60,6 +60,7 @@ Donald Beaudry
David Beazley
Robin Becker
Neal Becker
+Torsten Becker
Bill Bedford
Reimer Behrends
Ben Bell
diff --git a/Misc/NEWS b/Misc/NEWS
index 63e8d72..b1d078f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@ Core and Builtins
rather than the Py_IsInitialized flag, avoiding a Fatal Python
error in certain circumstances when an import is done in __del__.
+- issue #11828: startswith and endswith don't accept None as slice index.
+ Patch by Torsten Becker.
+
- Issue #10674: Remove unused 'dictmaker' rule from grammar.
- Issue #10596: Fix float.__mod__ to have the same behaviour as