diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-02 21:51:33 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-02 21:51:33 (GMT) |
commit | 74edda01a119ed8ecd1702940db2b2f09f05d022 (patch) | |
tree | 717f4a357158b99fc08f435eecc85e3b9611ff90 /Lib | |
parent | da2ecaf3349d564ef0392183d86270eea5cdb439 (diff) | |
download | cpython-74edda01a119ed8ecd1702940db2b2f09f05d022.zip cpython-74edda01a119ed8ecd1702940db2b2f09f05d022.tar.gz cpython-74edda01a119ed8ecd1702940db2b2f09f05d022.tar.bz2 |
Merged revisions 77247 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77247 | antoine.pitrou | 2010-01-02 22:47:10 +0100 (sam., 02 janv. 2010) | 5 lines
Add tests for issue #7458: str.rfind() would crash when called with an invalid
start value. The offending code itself was removed as part of #7462.
This patch by Victor Stinner.
........
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/string_tests.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/string_tests.py b/Lib/test/string_tests.py index ea49e38..4964248 100644 --- a/Lib/test/string_tests.py +++ b/Lib/test/string_tests.py @@ -172,6 +172,9 @@ class BaseTest(unittest.TestCase): self.checkequal(-1, '', 'find', 'xx', 1, 1) self.checkequal(-1, '', 'find', 'xx', sys.maxsize, 0) + # issue 7458 + self.checkequal(-1, 'ab', 'find', 'xxx', sys.maxsize + 1, 0) + # For a variety of combinations, # verify that str.find() matches __contains__ # and that the found substring is really at that location @@ -240,6 +243,9 @@ class BaseTest(unittest.TestCase): if loc != -1: self.assertEqual(i[loc:loc+len(j)], j) + # issue 7458 + self.checkequal(-1, 'ab', 'rfind', 'xxx', sys.maxsize + 1, 0) + def test_index(self): self.checkequal(0, 'abcdefghiabc', 'index', '') self.checkequal(3, 'abcdefghiabc', 'index', 'def') |