1. 2f9171d Fix spelling and grammar in code comments and documentation by Martin Panter · 8 years ago
  2. 9c0e1f8 Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters(). by Serhiy Storchaka · 8 years ago
  3. cc16423 Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4(). by Serhiy Storchaka · 8 years ago
  4. 63b5b6f Moved Unicode C API related tests to separate test class. by Serhiy Storchaka · 8 years ago
  5. 6245cb3 Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc by Martin Panter · 8 years ago
  6. 0d0db6c Issue #26712: Unify (r)split, (l/r)strip tests into string_tests by Martin Panter · 8 years ago
  7. 152a19c Issue #26257: Eliminate buffer_tests.py and fix ByteArrayAsStringTest by Martin Panter · 8 years ago
  8. fbb1c5e Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 9 years ago
  9. 3379867 Issue #26464: Fix unicode_fast_translate() again by Victor Stinner · 9 years ago
  10. 6c9aa8f Fix str.translate() by Victor Stinner · 9 years ago
  11. 6648bf5 Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. by Serhiy Storchaka · 9 years ago
  12. 7aa6908 Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. by Serhiy Storchaka · 9 years ago
  13. f9afda5 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  14. 1509580 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  15. 411dfd8 Issue #22643: Skip test_case_operation_overflow on computers with low memory. by Serhiy Storchaka · 9 years ago
  16. 3d717d0 Issue #22643: Skip test_case_operation_overflow on computers with low memory. by Serhiy Storchaka · 9 years ago
  17. 58c8f2b Issue #24848: Fixed bugs in UTF-7 decoding of misformed data: by Serhiy Storchaka · 9 years ago
  18. 28b21e5 Issue #24848: Fixed bugs in UTF-7 decoding of misformed data: by Serhiy Storchaka · 9 years ago
  19. f0eeedf Issue #22681: Added support for the koi8_t encoding. by Serhiy Storchaka · 9 years ago
  20. ad8a1c3 Issue #22682: Added support for the kz1048 encoding. by Serhiy Storchaka · 9 years ago
  21. 1b74d63 Added explicit tests for issue #23803. by Serhiy Storchaka · 10 years ago
  22. 48070c1 Issue #23803: Fixed str.partition() and str.rpartition() when a separator by Serhiy Storchaka · 10 years ago
  23. be1eb14 Added tests for mixed kinds of Unicode strings. by Serhiy Storchaka · 10 years ago
  24. f7ef475 Added tests for mixed kinds of Unicode strings. by Serhiy Storchaka · 10 years ago
  25. a60c2fe Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 10 years ago
  26. c2ccce7 Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 10 years ago
  27. 82e07b9 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 10 years ago
  28. d3faf43 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 10 years ago
  29. dc8899f merge 3.4 (#22643) by Benjamin Peterson · 10 years ago
  30. 3f9f612 merge 3.3 (#22643) by Benjamin Peterson · 10 years ago
  31. 4d85689 test is cpython only by Benjamin Peterson · 10 years ago
  32. 6925264 merge 3.4 (#22643) by Benjamin Peterson · 10 years ago
  33. 1cbb3fe merge 3.3 (#22643) by Benjamin Peterson · 10 years ago
  34. e1bd38c fix integer overflow in unicode case operations (closes #22643) by Benjamin Peterson · 10 years ago
  35. 280c458 Closes issue #12546: Allow \x00 as a fill character for builtin type __format__ methods. by Eric V. Smith · 10 years ago
  36. 2ea9712 Issue #12546: Allow \x00 as a fill character for builtin type __format__ methods. by Eric V. Smith · 10 years ago
  37. 4ff33af Issue #21118: Add unit test for invalid character replacement (code point higher than U+10ffff) by Victor Stinner · 10 years ago
  38. 5a29f25 Issue #21118: Add more unit tests on str.translate() by Victor Stinner · 10 years ago
  39. 9ab7480 Issue19995: more informative error message; spelling corrections; use operator.mod instead of __mod__ by Ethan Furman · 11 years ago
  40. 38d872e Issue19995: passing a non-int to %o, %c, %x, or %X now raises an exception by Ethan Furman · 11 years ago
  41. f28ba36 Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 11 years ago
  42. 5cfc79d Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 11 years ago
  43. a70805e Issue19995: fixed typo; switched from test.support.check_warnings to assertWarns by Ethan Furman · 11 years ago
  44. f9bba9c Issue19995: issue deprecation warning for non-integer values to %c, %o, %x, %X by Ethan Furman · 11 years ago
  45. eb16804 assertEquals is deprecated, use assertEqual instead. by Antoine Pitrou · 11 years ago
  46. df3ed24 Issue19995: %o, %x, %X now only accept ints by Ethan Furman · 11 years ago
  47. 101d9e7 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  48. 9fe6d86 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  49. d75803c merge 3.3 (#19729) by Benjamin Peterson · 11 years ago
  50. 0ee22bf fix format spec recursive expansion (closes #19729) by Benjamin Peterson · 11 years ago
  51. be0c325 Issue #19668: Added support for the cp1125 encoding. by Serhiy Storchaka · 11 years ago
  52. ad8156e #1097797: Add CP273 codec, and exercise it in the test suite by Andrew Kuchling · 11 years ago
  53. 13bdfa7 Issue #18780: code cleanup. by Ethan Furman · 11 years ago
  54. fb13721 Close #18780: %-formatting now prints value for int subclasses with %d, %i, and %u codes. by Ethan Furman · 11 years ago
  55. 739e750 Issue #16741: Remove testing of implementation artifact. by Serhiy Storchaka · 11 years ago
  56. 3ceaff0 Issue #16741: Remove testing of implementation artifact. by Serhiy Storchaka · 11 years ago
  57. bf5af5d Merge str.center tests from 3.3. by Ezio Melotti · 11 years ago
  58. f84e01d Add a couple of tests for str.center with non-ASCII chars. by Ezio Melotti · 11 years ago
  59. c89533f Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise by Serhiy Storchaka · 11 years ago
  60. 8eeae21 Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise by Serhiy Storchaka · 11 years ago
  61. f15ffe0 Add tests for issue #18183. by Serhiy Storchaka · 11 years ago
  62. 31b1c8b Add tests for issue #18183. by Serhiy Storchaka · 11 years ago
  63. 3164f5d merge 3.3 (#18183) by Benjamin Peterson · 11 years ago
  64. 7e30373 remove MAX_MAXCHAR because it's unsafe for computing maximum codepoitn value (see #18183) by Benjamin Peterson · 11 years ago
  65. d2b58a9 only recursively expand in the format spec (closes #17644) by Benjamin Peterson · 11 years ago
  66. 4d94474 rewrite the parsing of field names to be more consistent wrt recursive expansion by Benjamin Peterson · 11 years ago
  67. 4895363 merge 3.3 by Benjamin Peterson · 11 years ago
  68. 8cecc8c Issue #7330: Implement width and precision (ex: "%5.3s") for the format string by Victor Stinner · 11 years ago
  69. 9fc5981 Issue #17615: Add tests comparing Unicode strings of different kinds by Victor Stinner · 11 years ago
  70. 09d9d0f Merge DeprecationWarnings silencing in test_unicode from 3.3. by Ezio Melotti · 12 years ago
  71. 51e243f Silence DeprecationWarnings in test_unicode. by Ezio Melotti · 12 years ago
  72. cfd2c1b (Merge 3.3) Issue #17137: When an Unicode string is resized, the internal wide by Victor Stinner · 12 years ago
  73. bbbac2e Issue #17137: When an Unicode string is resized, the internal wide character by Victor Stinner · 12 years ago
  74. 5b1acc0 #16910: merge with 3.3. by Ezio Melotti · 12 years ago
  75. 0dceb56 #16910: test_bytes, test_unicode, and test_userstring now work with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  76. 2cd8ce4 Issue #9856: Replace deprecation warinigs to raising TypeError in object.__format__ by Andrew Svetlov · 12 years ago
  77. d675a2c Merge from 3.3: Improve str() and object.__str__() docs (issue #13538). by Chris Jerdonek · 12 years ago
  78. 5fae0e5 Improve str() and object.__str__() documentation (issue #13538). by Chris Jerdonek · 12 years ago
  79. cfa9636 #8271: merge with 3.3. by Ezio Melotti · 12 years ago
  80. f7ed5d1 #8271: the utf-8 decoder now outputs the correct number of U+FFFD characters when used with the "replace" error handler on invalid utf-8 sequences. Patch by Serhiy Storchaka, tests by Ezio Melotti. by Ezio Melotti · 12 years ago
  81. 61254b9 Issue #14700: merge tests from 3.3. by Mark Dickinson · 12 years ago
  82. 2a83f16 Issue #14700: merge tests from 3.2. by Mark Dickinson · 12 years ago
  83. fb90c09 Issue #14700: Fix buggy overflow checks for large precision and width in new-style and old-style formatting. by Mark Dickinson · 12 years ago
  84. 15a1136 Issue #16147: PyUnicode_FromFormatV() doesn't need anymore to allocate a buffer by Victor Stinner · 12 years ago
  85. e215d96 Issue #16147: Rewrite PyUnicode_FromFormatV() to use _PyUnicodeWriter API by Victor Stinner · 12 years ago
  86. 4eda937 add another testcase by Benjamin Peterson · 12 years ago
  87. acc0c18 Remove a now worthless test. by Brett Cannon · 12 years ago
  88. f59c28c unicode_writer_finish() checks string consistency by Victor Stinner · 12 years ago
  89. ece58de Close #14648: Compute correctly maxchar in str.format() for substrin by Victor Stinner · 12 years ago
  90. 80d07f8 inherit maxchar of field value where needed (closes #14648) by Benjamin Peterson · 12 years ago
  91. 97722c4 str.format_map tests don't do what they say: fix to actually implement the intent of the test. Closes #13450. Patch by Akira Li. by Eric V. Smith · 13 years ago
  92. edbb6ca str.format_map tests don't do what they say: fix to actually implement the intent of the test. Closes #13450. by Eric V. Smith · 13 years ago
  93. d5890c8 add str.casefold() (closes #13752) by Benjamin Peterson · 13 years ago
  94. b2bf01d use full unicode mappings for upper/lower/title case (#12736) by Benjamin Peterson · 13 years ago
  95. 6345be9 Close #13093: PyUnicode_EncodeDecimal() doesn't support error handlers by Victor Stinner · 13 years ago
  96. b84d723 (Merge 3.2) Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 13 years ago
  97. c814a38 Add a test on str.__getnewargs__() by Victor Stinner · 13 years ago
  98. 42bf775 Rewrite PyUnicode_EncodeDecimal() to use the new Unicode API by Victor Stinner · 13 years ago
  99. 040e16e "unicode_internal" codec has been deprecated: fix related tests by Victor Stinner · 13 years ago
  100. 78edf75 Issue #13333: The UTF-7 decoder now accepts lone surrogates by Antoine Pitrou · 13 years ago