summaryrefslogtreecommitdiff
path: root/Lib/test/string_tests.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #26712: Unify (r)split(), (l/r)strip() tests into string_testsMartin Panter2016-04-101-1/+32
* Issue #26257: Eliminate buffer_tests.py and fix ByteArrayAsStringTestMartin Panter2016-04-061-12/+35
* Issue #19543: Emit deprecation warning for known non-text encodings.Serhiy Storchaka2015-05-311-4/+8
* Change deprecated Exception.message to Exception.args-[0] where the use ofTerry Jan Reedy2014-10-121-1/+1
* give exception a nice message (closes #22379)Benjamin Peterson2014-09-281-7/+6
* Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-12/+15
* Issue #19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-101-22/+22
* allow any type with __getitem__ to be a mapping for the purposes of % (#15801)Benjamin Peterson2013-03-231-0/+4
* Ensure that width and precision in string formatting test have type int, not ...Serhiy Storchaka2013-01-191-12/+12
* Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-0/+15
* use the stricter PyMapping_Check (closes #15801)Benjamin Peterson2012-08-281-0/+3
* #12266: move the tests in test_unicode.Ezio Melotti2011-08-151-17/+0
* #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and ...Ezio Melotti2011-08-151-0/+17
* startswith and endswith don't accept None as slice index. Patch by Torsten Be...Jesus Cea2011-04-201-0/+57
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-11/+11
* Strengthen test_unicode with explicit type checking for assertEqual tests.Florent Xicluna2010-09-131-1/+1
* Merged revisions 84470-84471,84566-84567,84759 via svnmerge fromFlorent Xicluna2010-09-131-1/+1
* Issue #7849: Now the utility ``check_warnings`` verifies if the warnings areFlorent Xicluna2010-03-071-2/+1
* remove archaic functions from test_supportEzio Melotti2010-01-241-9/+9
* Remove silly conditional.Antoine Pitrou2010-01-021-4/+2
* Add tests for issue #7458: str.rfind() would crash when called with an invalidAntoine Pitrou2010-01-021-0/+6
* Issue #7462: Implement the stringlib fast search algorithm for the `rfind`,Antoine Pitrou2010-01-021-2/+29
* Remove restriction on precision when formatting floats. This is theMark Dickinson2009-11-231-8/+1
* #3967: Correct a crash in count() and find() methods of string-like objects.Amaury Forgeot d'Arc2008-09-261-0/+16
* Issue #3751: str.rpartition would perform a left-partition when called withAmaury Forgeot d'Arc2008-09-011-0/+5
* Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,...Christian Heimes2008-03-261-2/+6
* Issue 1742669. Now %d accepts very big float numbers.Facundo Batista2008-02-241-0/+9
* Now in find, rfind, index, and rindex, you can use None as defaults,Facundo Batista2007-11-161-0/+28
* Improve extended slicing support in builtin types and classes. Specifically:Thomas Wouters2007-08-281-2/+12
* Fix a bug when there was a newline in the string expandtabs was called on.Neal Norwitz2007-06-111-0/+5
* Fix those parts in the testsuite that assumed that sys.maxint would cause ove...Kristján Valur Jónsson2007-05-031-2/+2
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-251-2/+2
* SF 1193128: Let str.translate(None) be an identity transformationRaymond Hettinger2007-04-121-0/+3
* Fix endcase for str.rpartition()Raymond Hettinger2006-09-041-1/+1
* Bug #1515471: string.replace() accepts character buffers again.Neal Norwitz2006-07-301-2/+7
* Apply perky's fix for #1503157: "/".join([u"", u""]) raising OverflowError.Georg Brandl2006-06-101-0/+2
* RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first...Georg Brandl2006-06-091-1/+31
* Re-enable a new empty-string test added during the NFS sprint,Tim Peters2006-06-011-6/+1
* changed count to return 0 for slices outside the source stringFredrik Lundh2006-05-301-1/+2
* changed find/rfind to return -1 for matches outside the source stringFredrik Lundh2006-05-301-0/+8
* fixed "abc".count("", 100) == -96 error (hopefully, nobody's relying onFredrik Lundh2006-05-291-0/+8
* needspeed: rpartition documentation, tests, and a bug fixes.Fredrik Lundh2006-05-261-2/+17
* Test for more edge strip cases; leading and trailing separator gets removedAndrew Dalke2006-05-261-0/+2
* Added more rstrip tests, including for prealloc'ed arraysAndrew Dalke2006-05-261-1/+54
* Test cases for off-by-one errors in string split with multicharacter pattern.Andrew Dalke2006-05-261-0/+2
* I like tests.Andrew Dalke2006-05-261-0/+32
* Added split whitespace checks for characters other than space.Andrew Dalke2006-05-261-0/+1
* Added a few more test cases for whitespace split. These strings have leading...Andrew Dalke2006-05-261-0/+7
* needforspeed: partition implementation, part two.Fredrik Lundh2006-05-261-0/+15
* Whitespace normalization.Tim Peters2006-05-251-2/+2