summaryrefslogtreecommitdiffstats
path: root/Lib/test/string_tests.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* needforspeed: check for overflow in replace (from Andrew Dalke)Fredrik Lundh2006-05-251-9/+8
* Added tests for implementation error we came up with in the need for speed sp...Andrew Dalke2006-05-251-0/+19
* Disable the damn empty-string replace test -- it can'tTim Peters2006-05-241-2/+2
* We can't leave the checked-in tests broken.Tim Peters2006-05-241-5/+10
* Added a slew of test for string replace, based various corner cases fromAndrew Dalke2006-05-241-0/+157
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+3
* Fix bug:Michael W. Hudson2005-10-211-0/+9
* Disable encoding/decoding test, if unicode is disabled.Walter Dörwald2005-07-281-19/+20
* * Beef-up tests for str.count().Raymond Hettinger2005-02-201-0/+28
* * Beef-up testing of str.__contains__() and str.find().Raymond Hettinger2005-02-201-0/+24
* SF bug #1054139: serious string hashing error in 2.4b1Raymond Hettinger2004-10-261-0/+9
* test_bug1001011(): Verify thatTim Peters2004-08-271-5/+33
* Move test_bug1001011() to string_tests.MixinStrUnicodeTest so thatWalter Dörwald2004-08-261-0/+19
* SF #989185: Drop unicode.iswide() and unicode.width() and addHye-Shik Chang2004-08-041-25/+0
* Add iswide() and width() method for UserString according as theHye-Shik Chang2004-06-041-0/+25
* [SF #866875] Add a specialized routine for one characterHye-Shik Chang2004-01-051-14/+55
* Fix unicode.rsplit()'s bug that ignores separater on the end of string whenHye-Shik Chang2003-12-231-0/+2
* Add rsplit method for str and unicode builtin types.Hye-Shik Chang2003-12-151-0/+20
* Add optional fillchar argument to ljust(), rjust(), and center() string methods.Raymond Hettinger2003-11-261-3/+3
* SF bug #795506: Wrong handling of string format code for float values.Raymond Hettinger2003-08-271-0/+1
* Whitespace normalization.Tim Peters2003-04-241-1/+0
* Attempt to make all the various string *strip methods the same.Neal Norwitz2003-04-101-28/+27
* Fix PyString_Format() so that '%c' % u'a' returns u'a'Walter Dörwald2003-03-311-0/+1
* Add two tests for simple error cases.Walter Dörwald2003-03-261-0/+4
* Get test to work on alphaNeal Norwitz2003-02-231-1/+1