diff options
author | Jesus Cea <jcea@jcea.es> | 2011-04-20 14:39:15 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2011-04-20 14:39:15 (GMT) |
commit | 44e81687a22b5890e9fddc80de6afaeb1757aa6d (patch) | |
tree | 5b837a03a91c87e73e883bef0e6cb7f340a9105e /Misc | |
parent | 0d654335689b88defdc6403624e3bfa8c0fd108b (diff) | |
download | cpython-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/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -60,6 +60,7 @@ Donald Beaudry David Beazley Robin Becker Neal Becker +Torsten Becker Bill Bedford Reimer Behrends Ben Bell @@ -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 |