1. c7797dc Issue #19543: Emit deprecation warning for known non-text encodings. by Serhiy Storchaka · 10 years ago
  2. c0dc65e Change deprecated Exception.message to Exception.args-[0] where the use of by Terry Jan Reedy · 11 years ago
  3. 1643d5c give exception a nice message (closes #22379) by Benjamin Peterson · 11 years ago
  4. 76249ea Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 11 years ago
  5. 1f70221 Issue #19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  6. da2c7eb allow any type with __getitem__ to be a mapping for the purposes of % (#15801) by Benjamin Peterson · 12 years ago
  7. 18a1393 Ensure that width and precision in string formatting test have type int, not long. by Serhiy Storchaka · 12 years ago
  8. 74f49ab Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  9. 23d49d3 use the stricter PyMapping_Check (closes #15801) by Benjamin Peterson · 13 years ago
  10. ea7b6f6 #12266: move the tests in test_unicode. by Ezio Melotti · 14 years ago
  11. 15d6b65 #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and cased non-letter characters. by Ezio Melotti · 14 years ago
  12. 44e8168 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 14 years ago
  13. 2623a37 Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  14. c0c0b14 Strengthen test_unicode with explicit type checking for assertEqual tests. by Florent Xicluna · 15 years ago
  15. 9b90cd1 Merged revisions 84470-84471,84566-84567,84759 via svnmerge from by Florent Xicluna · 15 years ago
  16. 6de9e93 Issue #7849: Now the utility ``check_warnings`` verifies if the warnings are by Florent Xicluna · 15 years ago
  17. 469a05f remove archaic functions from test_support by Ezio Melotti · 15 years ago
  18. b538d54 Remove silly conditional. by Antoine Pitrou · 15 years ago
  19. 83f86e8 Add tests for issue #7458: str.rfind() would crash when called with an invalid by Antoine Pitrou · 15 years ago
  20. 5b7139a Issue #7462: Implement the stringlib fast search algorithm for the `rfind`, by Antoine Pitrou · 15 years ago
  21. 18cfada Remove restriction on precision when formatting floats. This is the by Mark Dickinson · 15 years ago
  22. fc5ea39 #3967: Correct a crash in count() and find() methods of string-like objects. by Amaury Forgeot d'Arc · 17 years ago
  23. 3571fbf Issue #3751: str.rpartition would perform a left-partition when called with by Amaury Forgeot d'Arc · 17 years ago
  24. 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 17 years ago
  25. c11cecf Issue 1742669. Now %d accepts very big float numbers. Thanks Gabriel Genellina. by Facundo Batista · 17 years ago
  26. 57d5669 Now in find, rfind, index, and rindex, you can use None as defaults, by Facundo Batista · 17 years ago
  27. 3ccec68 Improve extended slicing support in builtin types and classes. Specifically: by Thomas Wouters · 18 years ago
  28. 5c9a81a Fix a bug when there was a newline in the string expandtabs was called on. by Neal Norwitz · 18 years ago
  29. 170eee9 Fix those parts in the testsuite that assumed that sys.maxint would cause overflow on x64. Now the testsuite is well behaved on that platform. by Kristján Valur Jónsson · 18 years ago
  30. 0d4c06e Whitespace normalization. Ugh, we really need to do this more often. by Neal Norwitz · 18 years ago
  31. 4db5fe9 SF 1193128: Let str.translate(None) be an identity transformation by Raymond Hettinger · 18 years ago
  32. a0c95fa Fix endcase for str.rpartition() by Raymond Hettinger · 19 years ago
  33. f71ec5a Bug #1515471: string.replace() accepts character buffers again. by Neal Norwitz · 19 years ago
  34. 90e27d3 Apply perky's fix for #1503157: "/".join([u"", u""]) raising OverflowError. by Georg Brandl · 19 years ago
  35. 2425081 RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first argument. by Georg Brandl · 19 years ago
  36. 80a18f0 Re-enable a new empty-string test added during the NFS sprint, by Tim Peters · 19 years ago
  37. 9e9ef9f changed count to return 0 for slices outside the source string by Fredrik Lundh · 19 years ago
  38. 93eff6f changed find/rfind to return -1 for matches outside the source string by Fredrik Lundh · 19 years ago
  39. b51b470 fixed "abc".count("", 100) == -96 error (hopefully, nobody's relying on by Fredrik Lundh · 19 years ago
  40. 9c0e9c0 needspeed: rpartition documentation, tests, and a bug fixes. by Fredrik Lundh · 19 years ago
  41. 725fe40 Test for more edge strip cases; leading and trailing separator gets removed by Andrew Dalke · 19 years ago
  42. 669fa18 Added more rstrip tests, including for prealloc'ed arrays by Andrew Dalke · 19 years ago
  43. 5cc6009 Test cases for off-by-one errors in string split with multicharacter pattern. by Andrew Dalke · 19 years ago
  44. 005aee2 I like tests. by Andrew Dalke · 19 years ago
  45. 03fb444 Added split whitespace checks for characters other than space. by Andrew Dalke · 19 years ago
  46. 984b971 Added a few more test cases for whitespace split. These strings have leading whitespace. by Andrew Dalke · 19 years ago
  47. 06a69dd needforspeed: partition implementation, part two. by Fredrik Lundh · 19 years ago
  48. d95d593 Whitespace normalization. by Tim Peters · 19 years ago
  49. 0c71f88 needforspeed: check for overflow in replace (from Andrew Dalke) by Fredrik Lundh · 19 years ago
  50. 2bddcbf Added tests for implementation error we came up with in the need for speed sprint. by Andrew Dalke · 19 years ago
  51. f404908 Disable the damn empty-string replace test -- it can't by Tim Peters · 19 years ago
  52. beaec0c We can't leave the checked-in tests broken. by Tim Peters · 19 years ago
  53. e5488ec Added a slew of test for string replace, based various corner cases from by Andrew Dalke · 19 years ago
  54. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  55. b2308bb Fix bug: by Michael W. Hudson · 20 years ago
  56. 6eea789 Disable encoding/decoding test, if unicode is disabled. by Walter Dörwald · 20 years ago
  57. 57e7447 * Beef-up tests for str.count(). by Raymond Hettinger · 20 years ago
  58. 7cbf1bc * Beef-up testing of str.__contains__() and str.find(). by Raymond Hettinger · 20 years ago
  59. 561fbf1 SF bug #1054139: serious string hashing error in 2.4b1 by Raymond Hettinger · 21 years ago
  60. 108f137 test_bug1001011(): Verify that by Tim Peters · 21 years ago
  61. 57d88e5 Move test_bug1001011() to string_tests.MixinStrUnicodeTest so that by Walter Dörwald · 21 years ago
  62. e9ddfbb SF #989185: Drop unicode.iswide() and unicode.width() and add by Hye-Shik Chang · 21 years ago
  63. 5f51259 Add iswide() and width() method for UserString according as the by Hye-Shik Chang · 21 years ago
  64. 75c00ef [SF #866875] Add a specialized routine for one character by Hye-Shik Chang · 21 years ago
  65. 7fc4cf5 Fix unicode.rsplit()'s bug that ignores separater on the end of string when by Hye-Shik Chang · 21 years ago
  66. 3ae811b Add rsplit method for str and unicode builtin types. by Hye-Shik Chang · 21 years ago
  67. 4f8f976 Add optional fillchar argument to ljust(), rjust(), and center() string methods. by Raymond Hettinger · 21 years ago
  68. 9bfe533 SF bug #795506: Wrong handling of string format code for float values. by Raymond Hettinger · 22 years ago
  69. 0eadaac Whitespace normalization. by Tim Peters · 22 years ago
  70. ffe33b7 Attempt to make all the various string *strip methods the same. by Neal Norwitz · 22 years ago
  71. 43440a6 Fix PyString_Format() so that '%c' % u'a' returns u'a' by Walter Dörwald · 22 years ago
  72. 97951de Add two tests for simple error cases. by Walter Dörwald · 22 years ago
  73. 15ff0e9 Get test to work on alpha by Neal Norwitz · 22 years ago
  74. 0fd583c Port all string tests to PyUnit and share as much tests by Walter Dörwald · 22 years ago
  75. 00b6127 Patch #650653: Raise always value error if the table is not 256 bytes long. by Martin v. Löwis · 22 years ago
  76. b981df9 check for str.__mod__ by Neil Schemenauer · 22 years ago
  77. 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 23 years ago
  78. c35491e Moved inplace add and multiply methods from UserString to MutableString. by Raymond Hettinger · 23 years ago
  79. 8da9da0 Revised the test suite for 'contains' to use the test() function argument by Raymond Hettinger · 23 years ago
  80. 469cdad Whitespace normalization. by Tim Peters · 23 years ago
  81. 817918c Committing patch #591250 which provides "str1 in str2" when str1 is a by Barry Warsaw · 23 years ago
  82. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 23 years ago
  83. 1f68fc7 SF bug # 493951 string.{starts,ends}with vs slices by Neal Norwitz · 23 years ago
  84. 8ac1495 Whitespace normalization. by Tim Peters · 23 years ago
  85. f207277 More --disable-unicode stuff. by Michael W. Hudson · 23 years ago
  86. de02bcb Apply patch diff.txt from SF feature request http://www.python.org/sf/444708 by Walter Dörwald · 23 years ago
  87. 863ac44 Whitespace normalization. by Tim Peters · 23 years ago
  88. 068325e Apply the second version of SF patch http://www.python.org/sf/536241 by Walter Dörwald · 23 years ago
  89. 018b0eb Partially implement SF feature request 444708. by Guido van Rossum · 23 years ago
  90. c6c9c4a Add two tests for string.zfill by Andrew M. Kuchling · 23 years ago
  91. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 24 years ago
  92. 2d92041 This patch changes the way the string .encode() method works slightly by Marc-André Lemburg · 24 years ago
  93. 1a7b3ee SF bug #422088: [OSF1 alpha] string.replace(). by Tim Peters · 24 years ago
  94. fc170b1 String method conversion. by Eric S. Raymond · 24 years ago
  95. fde66e1 Fixed .capitalize() method of Unicode objects to work like the by Marc-André Lemburg · 24 years ago
  96. d2bf3b7 Whitespace normalization. Leaving tokenize_tests.py alone for now. by Tim Peters · 24 years ago
  97. 3a645e4 Added checks to prevent PyUnicode_Count() from dumping core by Marc-André Lemburg · 24 years ago
  98. 88887aa small updates to string_join: by Jeremy Hylton · 25 years ago
  99. 20f41b6 add more tests of string.join variants to run_method_tests by Jeremy Hylton · 25 years ago
  100. f82b04e factor out test definitions to string_tests module by Jeremy Hylton · 25 years ago