| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix a bug when there was a newline in the string expandtabs was called on. | Neal Norwitz | 2007-06-11 | 1 | -0/+5 |
|
|
* | Fix those parts in the testsuite that assumed that sys.maxint would cause ove... | Kristján Valur Jónsson | 2007-05-03 | 1 | -2/+2 |
|
|
* | Whitespace normalization. Ugh, we really need to do this more often. | Neal Norwitz | 2007-04-25 | 1 | -2/+2 |
|
|
* | SF 1193128: Let str.translate(None) be an identity transformation | Raymond Hettinger | 2007-04-12 | 1 | -0/+3 |
|
|
* | Fix endcase for str.rpartition() | Raymond Hettinger | 2006-09-04 | 1 | -1/+1 |
|
|
* | Bug #1515471: string.replace() accepts character buffers again. | Neal Norwitz | 2006-07-30 | 1 | -2/+7 |
|
|
* | Apply perky's fix for #1503157: "/".join([u"", u""]) raising OverflowError. | Georg Brandl | 2006-06-10 | 1 | -0/+2 |
|
|
* | RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first... | Georg Brandl | 2006-06-09 | 1 | -1/+31 |
|
|
* | Re-enable a new empty-string test added during the NFS sprint, | Tim Peters | 2006-06-01 | 1 | -6/+1 |
|
|
* | changed count to return 0 for slices outside the source string | Fredrik Lundh | 2006-05-30 | 1 | -1/+2 |
|
|
* | changed find/rfind to return -1 for matches outside the source string | Fredrik Lundh | 2006-05-30 | 1 | -0/+8 |
|
|
* | fixed "abc".count("", 100) == -96 error (hopefully, nobody's relying on | Fredrik Lundh | 2006-05-29 | 1 | -0/+8 |
|
|
* | needspeed: rpartition documentation, tests, and a bug fixes. | Fredrik Lundh | 2006-05-26 | 1 | -2/+17 |
|
|
* | Test for more edge strip cases; leading and trailing separator gets removed | Andrew Dalke | 2006-05-26 | 1 | -0/+2 |
|
|
* | Added more rstrip tests, including for prealloc'ed arrays | Andrew Dalke | 2006-05-26 | 1 | -1/+54 |
|
|
* | Test cases for off-by-one errors in string split with multicharacter pattern. | Andrew Dalke | 2006-05-26 | 1 | -0/+2 |
|
|
* | I like tests. | Andrew Dalke | 2006-05-26 | 1 | -0/+32 |
|
|
* | Added split whitespace checks for characters other than space. | Andrew Dalke | 2006-05-26 | 1 | -0/+1 |
|
|
* | Added a few more test cases for whitespace split. These strings have leading... | Andrew Dalke | 2006-05-26 | 1 | -0/+7 |
|
|
* | needforspeed: partition implementation, part two. | Fredrik Lundh | 2006-05-26 | 1 | -0/+15 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-05-25 | 1 | -2/+2 |
|
|
* | needforspeed: check for overflow in replace (from Andrew Dalke) | Fredrik Lundh | 2006-05-25 | 1 | -9/+8 |
|
|
* | Added tests for implementation error we came up with in the need for speed sp... | Andrew Dalke | 2006-05-25 | 1 | -0/+19 |
|
|
* | Disable the damn empty-string replace test -- it can't | Tim Peters | 2006-05-24 | 1 | -2/+2 |
|
|
* | We can't leave the checked-in tests broken. | Tim Peters | 2006-05-24 | 1 | -5/+10 |
|
|
* | Added a slew of test for string replace, based various corner cases from | Andrew Dalke | 2006-05-24 | 1 | -0/+157 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -1/+3 |
|
|
* | Fix bug: | Michael W. Hudson | 2005-10-21 | 1 | -0/+9 |
|
|
* | Disable encoding/decoding test, if unicode is disabled. | Walter Dörwald | 2005-07-28 | 1 | -19/+20 |
|
|
* | * Beef-up tests for str.count(). | Raymond Hettinger | 2005-02-20 | 1 | -0/+28 |
|
|
* | * Beef-up testing of str.__contains__() and str.find(). | Raymond Hettinger | 2005-02-20 | 1 | -0/+24 |
|
|
* | SF bug #1054139: serious string hashing error in 2.4b1 | Raymond Hettinger | 2004-10-26 | 1 | -0/+9 |
|
|
* | test_bug1001011(): Verify that | Tim Peters | 2004-08-27 | 1 | -5/+33 |
|
|
* | Move test_bug1001011() to string_tests.MixinStrUnicodeTest so that | Walter Dörwald | 2004-08-26 | 1 | -0/+19 |
|
|
* | SF #989185: Drop unicode.iswide() and unicode.width() and add | Hye-Shik Chang | 2004-08-04 | 1 | -25/+0 |
|
|
* | Add iswide() and width() method for UserString according as the | Hye-Shik Chang | 2004-06-04 | 1 | -0/+25 |
|
|
* | [SF #866875] Add a specialized routine for one character | Hye-Shik Chang | 2004-01-05 | 1 | -14/+55 |
|
|
* | Fix unicode.rsplit()'s bug that ignores separater on the end of string when | Hye-Shik Chang | 2003-12-23 | 1 | -0/+2 |
|
|
* | Add rsplit method for str and unicode builtin types. | Hye-Shik Chang | 2003-12-15 | 1 | -0/+20 |
|
|
* | Add optional fillchar argument to ljust(), rjust(), and center() string methods. | Raymond Hettinger | 2003-11-26 | 1 | -3/+3 |
|
|
* | SF bug #795506: Wrong handling of string format code for float values. | Raymond Hettinger | 2003-08-27 | 1 | -0/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-04-24 | 1 | -1/+0 |
|
|
* | Attempt to make all the various string *strip methods the same. | Neal Norwitz | 2003-04-10 | 1 | -28/+27 |
|
|
* | Fix PyString_Format() so that '%c' % u'a' returns u'a' | Walter Dörwald | 2003-03-31 | 1 | -0/+1 |
|
|
* | Add two tests for simple error cases. | Walter Dörwald | 2003-03-26 | 1 | -0/+4 |
|
|
* | Get test to work on alpha | Neal Norwitz | 2003-02-23 | 1 | -1/+1 |
|
|
* | Port all string tests to PyUnit and share as much tests | Walter Dörwald | 2003-02-21 | 1 | -317/+616 |
|
|
* | Patch #650653: Raise always value error if the table is not 256 bytes long. | Martin v. Löwis | 2002-12-12 | 1 | -0/+2 |
|
|
* | check for str.__mod__ | Neil Schemenauer | 2002-11-18 | 1 | -0/+3 |
|
|
* | Code by Inyeol Lee, submitted to SF bug 595350, to implement | Guido van Rossum | 2002-08-23 | 1 | -0/+4 |
|
|