summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2011-04-20 15:09:23 (GMT)
committerJesus Cea <jcea@jcea.es>2011-04-20 15:09:23 (GMT)
commitac4515063c18157645d135bca8c4cf39542ccd6e (patch)
treea9f65e370ab063ec2c611215da1525fdf247c035 /Misc
parentd07eaf177c7d43a2479c1eb1fbab55e26e3822fa (diff)
downloadcpython-ac4515063c18157645d135bca8c4cf39542ccd6e.zip
cpython-ac4515063c18157645d135bca8c4cf39542ccd6e.tar.gz
cpython-ac4515063c18157645d135bca8c4cf39542ccd6e.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 f5fa82f..6a4fdd5 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -58,6 +58,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 1a5784a..663846f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -38,6 +38,9 @@ Core and Builtins
- Issue #8278: On Windows and with a NTFS filesystem, os.stat() and os.utime()
can now handle dates after 2038.
+- issue #11828: startswith and endswith don't accept None as slice index.
+ Patch by Torsten Becker.
+
- Issue #4236: PyModule_Create2 now checks the import machinery directly
rather than the Py_IsInitialized flag, avoiding a Fatal Python
error in certain circumstances when an import is done in __del__.