1. 51e243f Silence DeprecationWarnings in test_unicode. by Ezio Melotti · 11 years ago
  2. bbbac2e Issue #17137: When an Unicode string is resized, the internal wide character by Victor Stinner · 11 years ago
  3. 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
  4. 5fae0e5 Improve str() and object.__str__() documentation (issue #13538). by Chris Jerdonek · 12 years ago
  5. 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
  6. 2a83f16 Issue #14700: merge tests from 3.2. by Mark Dickinson · 12 years ago
  7. 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
  8. 4eda937 add another testcase by Benjamin Peterson · 12 years ago
  9. acc0c18 Remove a now worthless test. by Brett Cannon · 12 years ago
  10. f59c28c unicode_writer_finish() checks string consistency by Victor Stinner · 12 years ago
  11. ece58de Close #14648: Compute correctly maxchar in str.format() for substrin by Victor Stinner · 12 years ago
  12. 80d07f8 inherit maxchar of field value where needed (closes #14648) by Benjamin Peterson · 12 years ago
  13. 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 · 12 years ago
  14. 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 · 12 years ago
  15. d5890c8 add str.casefold() (closes #13752) by Benjamin Peterson · 13 years ago
  16. b2bf01d use full unicode mappings for upper/lower/title case (#12736) by Benjamin Peterson · 13 years ago
  17. 6345be9 Close #13093: PyUnicode_EncodeDecimal() doesn't support error handlers by Victor Stinner · 13 years ago
  18. b84d723 (Merge 3.2) Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 13 years ago
  19. c814a38 Add a test on str.__getnewargs__() by Victor Stinner · 13 years ago
  20. 42bf775 Rewrite PyUnicode_EncodeDecimal() to use the new Unicode API by Victor Stinner · 13 years ago
  21. 040e16e "unicode_internal" codec has been deprecated: fix related tests by Victor Stinner · 13 years ago
  22. 78edf75 Issue #13333: The UTF-7 decoder now accepts lone surrogates by Antoine Pitrou · 13 years ago
  23. 5418ee0 Issue #13333: The UTF-7 decoder now accepts lone surrogates by Antoine Pitrou · 13 years ago
  24. 40dc919 Fix range in test. by Ezio Melotti · 13 years ago
  25. 51f6648 Make test more inclusive by Antoine Pitrou · 13 years ago
  26. dffab19 Enable commented out test by Antoine Pitrou · 13 years ago
  27. 2c3b230 Issue #13134: optimize finding single-character strings using memchr by Antoine Pitrou · 13 years ago
  28. 798b4df test_unicode was forgetting to run the common string tests for str.find() by Antoine Pitrou · 13 years ago
  29. c0bbe7d test_unicode was forgetting to run the common string tests for str.find() by Antoine Pitrou · 13 years ago
  30. 1d972ad Mark 'abc'.expandtab() optimization as specific to CPython by Victor Stinner · 13 years ago
  31. 59de0ee str.replace(a, a) is now returning str unchanged if a is a by Victor Stinner · 13 years ago
  32. a9860ae #13054: fix usage of sys.maxunicode after PEP-393. by Ezio Melotti · 13 years ago
  33. e19aa38 When expandtabs() would be a no-op, don't create a duplicate string by Antoine Pitrou · 13 years ago
  34. 07ac3eb Optimize unicode_subtype_new(): don't encode to wchar_t and decode from wchar_t by Victor Stinner · 13 years ago
  35. 811c2f1 remove "fast-path" for (i)adding strings by Benjamin Peterson · 13 years ago
  36. 287eca6 Fix struct sizes. Drop -1, since the resulting string was actually the largest one by Martin v. Löwis · 13 years ago
  37. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  38. a3fbde3 Merge indentation fix and skip decorator with 3.2. by Ezio Melotti · 13 years ago
  39. a5c92b4 Fix indentation and add a skip decorator. by Ezio Melotti · 13 years ago
  40. 6f2a683 #9200: merge with 3.2. by Ezio Melotti · 13 years ago
  41. 93e7afc #9200: The str.is* methods now work with strings that contain non-BMP characters even in narrow Unicode builds. by Ezio Melotti · 13 years ago
  42. f8e7543 merge 3.2 (#12732) by Benjamin Peterson · 13 years ago
  43. f413b80 in narrow builds, make sure to test codepoints as identifier characters (closes #12732) by Benjamin Peterson · 13 years ago
  44. ab1d16b Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 13 years ago
  45. c12469d Merge from 3.2. by Eric V. Smith · 13 years ago
  46. 12ebefc Closes #12579. Positional fields with str.format_map() now raise a ValueError instead of SystemError. by Eric V. Smith · 13 years ago
  47. bc9d8f8 merge from 3.2 by Senthil Kumaran · 13 years ago
  48. 9ebe08d Fix closes issue12471 - wrong TypeError message when '%i' format spec was used. by Senthil Kumaran · 13 years ago
  49. bf1253b #6780: merge with 3.2. by Ezio Melotti · 13 years ago
  50. f2b3f78 #6780: merge with 3.1. by Ezio Melotti · 13 years ago
  51. ba42fd5 #6780: fix starts/endswith error message to mention that tuples are accepted too. by Ezio Melotti · 13 years ago
  52. b9cd353 Issue 9856: Change object.__format__ with a non-empty format string from a PendingDeprecationWarning to a DeprecationWarning. by Eric V. Smith · 13 years ago
  53. 6d970f4 Issue #10831: PyUnicode_FromFormat() supports %li, %lli and %zi formats by Victor Stinner · 13 years ago
  54. 9686545 Issue #10829: Refactor PyUnicode_FromFormat() by Victor Stinner · 13 years ago
  55. 2b574a2 Merged revisions 88697 via svnmerge from by Victor Stinner · 13 years ago
  56. 2512a8b Issue #11246: Fix PyUnicode_FromFormat("%V") by Victor Stinner · 13 years ago
  57. 8f36af7 Normalize the encoding names for Latin-1 and UTF-8 to 'latin-1' and 'utf-8'. by Marc-André Lemburg · 13 years ago
  58. 659eb84 Merged revisions 88481 via svnmerge from by Victor Stinner · 13 years ago
  59. 5ed8b2c Fix PyUnicode_FromFormatV("%c") for non-BMP char by Victor Stinner · 13 years ago
  60. a1eac72 Issue #11302: missing type check on _string.formatter_field_name_split and _string.formatter_parser caused crash. by Eric Smith · 14 years ago
  61. ca1e7ec test_unicode: use ctypes to test PyUnicode_FromFormat() by Victor Stinner · 14 years ago
  62. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  63. ed3a7d2 #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and assertRaisesRegex. by Ezio Melotti · 14 years ago
  64. 0662bc2 Fix tests when ctypes isn't available by Antoine Pitrou · 14 years ago
  65. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  66. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  67. 72f6620 Removed unused test classes from test_format_map(). by Eric Smith · 14 years ago
  68. 27bbca6 Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.format(**mapping), except mapping does not get converted to a dict. by Eric Smith · 14 years ago
  69. 43ffd5c Merged revisions 85861 via svnmerge from by Antoine Pitrou · 14 years ago
  70. d72402e Recode modules from latin-1 to utf-8 by Antoine Pitrou · 14 years ago
  71. 9a90900 PyUnicode_FromFormatV(): Fix %A format by Victor Stinner · 14 years ago
  72. baecd72 Upgrade to Unicode 6.0.0. by Martin v. Löwis · 14 years ago
  73. 46c7b3b Issue #8670: Rename testcapi unicode test methods by Victor Stinner · 14 years ago
  74. ea3f305 Oops, revert unwanted _testcapi changes of r85174 by Victor Stinner · 14 years ago
  75. 749261e Issue #8670: ctypes.c_wchar supports non-BMP characters with 32 bits wchar_t by Victor Stinner · 14 years ago
  76. 5593d8a Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replace by Victor Stinner · 14 years ago
  77. 1c24bd0 Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul character by Victor Stinner · 14 years ago
  78. e4d6317 Issue 7994: Make object.__format__() raise a PendingDeprecationWarning by Eric Smith · 14 years ago
  79. a87b383 Reenable test_ucs4 and remove some duplicated lines. by Florent Xicluna · 14 years ago
  80. 4c7db31 Issue #9738, #9836: Fix refleak introduced by r84704 by Victor Stinner · 14 years ago
  81. 1205f27 Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on by Victor Stinner · 14 years ago
  82. 324ac65 #5127: Even on narrow unicode builds, the C functions that access the Unicode by Amaury Forgeot d'Arc · 14 years ago
  83. 06124c0 Merged revisions 83966 via svnmerge from by Eric Smith · 14 years ago
  84. 994addc Remove unused test class. by Eric Smith · 14 years ago
  85. aebd6f4 Merged revisions 82978 via svnmerge from by Stefan Krah · 14 years ago
  86. 99212f6 Sub-issue of #9036: Fix incorrect use of Py_CHARMASK. by Stefan Krah · 14 years ago
  87. 25bc019 Merged revisions 82413,82468 via svnmerge from by Ezio Melotti · 14 years ago
  88. 57221d0 Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629. by Ezio Melotti · 14 years ago
  89. 5a6214a Merged revisions 81499,81506 via svnmerge from by Benjamin Peterson · 14 years ago
  90. 99bcf5c Merged revisions 81823,81835 via svnmerge from by Benjamin Peterson · 14 years ago
  91. 59a1b2f Merged revisions 81820 via svnmerge from by Benjamin Peterson · 14 years ago
  92. abdb21a Merged revisions 79281 via svnmerge from by Victor Stinner · 14 years ago
  93. 808fc0a Merged revisions 79278,79280 via svnmerge from by Victor Stinner · 14 years ago
  94. 226b230 Clean up the warnings filter use in test_unicode. by Brett Cannon · 14 years ago
  95. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  96. 308d637 Merged revisions 74929 via svnmerge from by Benjamin Peterson · 15 years ago
  97. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  98. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  99. 74b7e44 Issue #6150: Fix test_unicode on wide-unicode builds. by Martin v. Löwis · 15 years ago
  100. 41669ca Merged revisions 72848 via svnmerge from by Eric Smith · 15 years ago