| Commit message (Expand) | Author | Age | Files | Lines |
* | allow any type with __getitem__ to be a mapping for the purposes of % (#15801) | Benjamin Peterson | 2013-03-24 | 1 | -0/+4 |
|
|
* | Ensure that width and precision in string formatting test have type int, not ... | Serhiy Storchaka | 2013-01-19 | 1 | -12/+12 |
|
|
* | Issue #15989: Fix several occurrences of integer overflow | Serhiy Storchaka | 2013-01-19 | 1 | -0/+15 |
|
|
* | use the stricter PyMapping_Check (closes #15801) | Benjamin Peterson | 2012-08-28 | 1 | -0/+3 |
|
|
* | #12266: move the tests in test_unicode. | Ezio Melotti | 2011-08-15 | 1 | -17/+0 |
|
|
* | #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and ... | Ezio Melotti | 2011-08-15 | 1 | -0/+17 |
|
|
* | startswith and endswith don't accept None as slice index. Patch by Torsten Be... | Jesus Cea | 2011-04-20 | 1 | -0/+57 |
|
|
* | Merged revisions 86596 via svnmerge from | Ezio Melotti | 2010-11-21 | 1 | -11/+11 |
|
|
* | Strengthen test_unicode with explicit type checking for assertEqual tests. | Florent Xicluna | 2010-09-13 | 1 | -1/+1 |
|
|
* | Merged revisions 84470-84471,84566-84567,84759 via svnmerge from | Florent Xicluna | 2010-09-13 | 1 | -1/+1 |
|
|
* | Issue #7849: Now the utility ``check_warnings`` verifies if the warnings are | Florent Xicluna | 2010-03-07 | 1 | -2/+1 |
|
|
* | remove archaic functions from test_support | Ezio Melotti | 2010-01-24 | 1 | -9/+9 |
|
|
* | Remove silly conditional. | Antoine Pitrou | 2010-01-02 | 1 | -4/+2 |
|
|
* | Add tests for issue #7458: str.rfind() would crash when called with an invalid | Antoine Pitrou | 2010-01-02 | 1 | -0/+6 |
|
|
* | Issue #7462: Implement the stringlib fast search algorithm for the `rfind`, | Antoine Pitrou | 2010-01-02 | 1 | -2/+29 |
|
|
* | Remove restriction on precision when formatting floats. This is the | Mark Dickinson | 2009-11-23 | 1 | -8/+1 |
|
|
* | #3967: Correct a crash in count() and find() methods of string-like objects. | Amaury Forgeot d'Arc | 2008-09-26 | 1 | -0/+16 |
|
|
* | Issue #3751: str.rpartition would perform a left-partition when called with | Amaury Forgeot d'Arc | 2008-09-01 | 1 | -0/+5 |
|
|
* | Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,... | Christian Heimes | 2008-03-26 | 1 | -2/+6 |
|
|
* | Issue 1742669. Now %d accepts very big float numbers. | Facundo Batista | 2008-02-24 | 1 | -0/+9 |
|
|
* | Now in find, rfind, index, and rindex, you can use None as defaults, | Facundo Batista | 2007-11-16 | 1 | -0/+28 |
|
|
* | Improve extended slicing support in builtin types and classes. Specifically: | Thomas Wouters | 2007-08-28 | 1 | -2/+12 |
|
|
* | 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 |
|
|