1. 75d3600 Issue #14700: Fix buggy overflow checks for large precision and width in new-style and old-style formatting. by Mark Dickinson · 13 years ago
  2. 975134e Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 14 years ago
  3. 3040254 Issue #13333: The UTF-7 decoder now accepts lone surrogates by Antoine Pitrou · 14 years ago
  4. 12682b1 #9200: backport tests but run them on wide builds only. by Ezio Melotti · 14 years ago
  5. ea7b6f6 #12266: move the tests in test_unicode. by Ezio Melotti · 14 years ago
  6. e3685f6 #6780: fix starts/endswith error message to mention that tuples are accepted too. by Ezio Melotti · 14 years ago
  7. 370d85c Python 2 can encode/decode surrogates to utf-8. Add a test for this. by Ezio Melotti · 14 years ago
  8. b27ddc7 Merged revisions 85861 via svnmerge from by Antoine Pitrou · 15 years ago
  9. c0c0b14 Strengthen test_unicode with explicit type checking for assertEqual tests. by Florent Xicluna · 15 years ago
  10. 60d512c Check PendingDeprecationWarning after issue #7994. by Florent Xicluna · 15 years ago
  11. 9b90cd1 Merged revisions 84470-84471,84566-84567,84759 via svnmerge from by Florent Xicluna · 15 years ago
  12. 0b9201f Sub-issue of #9036: Fix incorrect use of Py_CHARMASK. by Stefan Krah · 15 years ago
  13. eabdeba use unicode literals by Benjamin Peterson · 15 years ago
  14. 13e934a correctly overflow when indexes are too large by Benjamin Peterson · 15 years ago
  15. ab2eb0e Add a NEWS entry for r81758 and clarify a comment. by Ezio Melotti · 15 years ago
  16. e57e50c Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629. by Ezio Melotti · 15 years ago
  17. f0757a2 #8016: add the CP858 codec (approved by Benjamin). (Also add CP720 to the tests, it was missing there.) by Georg Brandl · 15 years ago
  18. c7790ed Fix the NEWS about my last commit: an unicode subclass can now override the by Victor Stinner · 15 years ago
  19. 95affc4 Issue #1583863: An unicode subclass can now override the __str__ method by Victor Stinner · 15 years ago
  20. 6de9e93 Issue #7849: Now the utility ``check_warnings`` verifies if the warnings are by Florent Xicluna · 15 years ago
  21. f20f9c2 Issue #7649: Fix u'%c' % char for character in range 0x80..0xFF by Victor Stinner · 15 years ago
  22. aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
  23. 5b7139a Issue #7462: Implement the stringlib fast search algorithm for the `rfind`, by Antoine Pitrou · 16 years ago
  24. 0a0a1a8 Issue #1680159: unicode coercion during an 'in' operation was masking by R. David Murray · 16 years ago
  25. 332d721 add keyword arguments support to str/unicode encode and decode #6300 by Benjamin Peterson · 16 years ago
  26. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  27. 4b94b19 Issue 6089: str.format raises SystemError. by Eric Smith · 16 years ago
  28. 653dece Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal sequences. by Antoine Pitrou · 16 years ago
  29. 2ace4cf Unicode format tests weren't actually testing unicode. This was probably due to the original backport from py3k. by Eric Smith · 16 years ago
  30. 6f42edb Issue 5237, Allow auto-numbered replacement fields in str.format() strings. by Eric Smith · 16 years ago
  31. 187ac1b #3601: test_unicode.test_raiseMemError fails in UCS4 by Antoine Pitrou · 17 years ago
  32. fd7c43e #3556: test_raiseMemError consumes an insane amount of memory by Antoine Pitrou · 17 years ago
  33. 06847b1 Correct a crash when two successive unicode allocations fail with a MemoryError: by Amaury Forgeot d'Arc · 17 years ago
  34. 4982d5d #2242: utf7 decoding crashes on bogus input on some Windows/MSVC versions by Antoine Pitrou · 17 years ago
  35. 9a0d346 #1477: ur'\U0010FFFF' raised in narrow unicode builds. by Amaury Forgeot d'Arc · 17 years ago
  36. c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
  37. bc32fee Added code to correct combining str and unicode in ''.format(). Added test case. by Eric Smith · 17 years ago
  38. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
  39. db98f36 Fix failing unicode test caused by change to ast.c at r56441 by Kurt B. Kaiser · 18 years ago
  40. ba965de Prevent these tests from running on Win64 since they don\'t apply there either by Neal Norwitz · 18 years ago
  41. 7dbd2a3 Prevent expandtabs() on string and unicode objects from causing a segfault when by Neal Norwitz · 18 years ago
  42. c2898c5 Standardize on test.test_support.run_unittest() (as opposed to a mix of run_unittest() and run_suite()). Also, add functionality to run_unittest() that admits usage of unittest.TestLoader.loadTestsFromModule(). by Collin Winter · 18 years ago
  43. 17753ec Patch #1541585: fix buffer overrun when performing repr() on by Neal Norwitz · 19 years ago
  44. 4511a71 Whitespace normalization. by Tim Peters · 19 years ago
  45. de9b624 Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0. by Georg Brandl · 19 years ago
  46. 67b6d51 Fixed bug #1459029 - unicode reprs were double-escaped. by Anthony Baxter · 19 years ago
  47. da6b107 Checkin the test of patch #1400181. by Georg Brandl · 20 years ago
  48. 835b243 Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\' by Hye-Shik Chang · 20 years ago
  49. 430f68b Move registration of the codec search function to the module scope by Neal Norwitz · 20 years ago
  50. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 20 years ago
  51. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 20 years ago
  52. 57d88e5 Move test_bug1001011() to string_tests.MixinStrUnicodeTest so that by Walter Dörwald · 21 years ago
  53. e9ddfbb SF #989185: Drop unicode.iswide() and unicode.width() and add by Hye-Shik Chang · 21 years ago
  54. d25c650 Let u'%s' % obj try obj.__unicode__() first and fallback to obj.__str__(). by Marc-André Lemburg · 21 years ago
  55. 3c14544 Reuse width/iswide tests from strings_test. (Suggested by Walter Dörwald) by Hye-Shik Chang · 21 years ago
  56. 7bd8606 Fix typo. by Hye-Shik Chang · 21 years ago
  57. 974ed7c - SF #962502: Add two more methods for unicode type; width() and by Hye-Shik Chang · 21 years ago
  58. cd736e7 Fix reallocation bug in unicode.translate(): The code was comparing by Walter Dörwald · 22 years ago
  59. 504de6b Fix for SF bug [ 817156 ] invalid \U escape gives 0=length unistr. by Jeremy Hylton · 22 years ago
  60. 0d8e16c Support trailing dots in DNS names. Fixes #782510. Will backport to 2.3. by Martin v. Löwis · 22 years ago
  61. 9a3a9f7 Consider \U-escapes in raw-unicode-escape. Fixes #444514. by Martin v. Löwis · 22 years ago
  62. 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 22 years ago
  63. 44f527f Change formatchar(), so that u"%c" % 0xffffffff now raises by Walter Dörwald · 22 years ago
  64. 56fbcb5 Remove duplicate test. by Walter Dörwald · 22 years ago
  65. 43440a6 Fix PyString_Format() so that '%c' % u'a' returns u'a' by Walter Dörwald · 22 years ago
  66. 0fd583c Port all string tests to PyUnit and share as much tests by Walter Dörwald · 22 years ago
  67. 4f046e2 Add a few tests to test_count() to increase coverage in by Walter Dörwald · 22 years ago
  68. 7464024 Fix copy&paste error: call title instead of count by Walter Dörwald · 22 years ago
  69. 28256f2 Port test_unicode.py to PyUnit and add tests for error by Walter Dörwald · 23 years ago
  70. 395bb49 Add a test that exercises the error handling part of PyUnicode_EncodeDecimal(). by Walter Dörwald · 23 years ago
  71. 79f5783 Patch for bug #659709: bogus computation of float length by Marc-André Lemburg · 23 years ago
  72. ab9e4b7 check for unicode.__mod__ by Neil Schemenauer · 23 years ago
  73. 9cd87aa Fix for bug #626172: crash using unicode latin1 single char by Marc-André Lemburg · 23 years ago
  74. 1ce4ae3 Don't test whether surrogate sequences round-trip in UTF-8. 2.2.2 candidate. by Martin v. Löwis · 23 years ago
  75. 766e300 Use integer above sys.maxunicode for range test. Fixes #608884. 2.2.2 candidate. by Martin v. Löwis · 23 years ago
  76. 5c1ee17 Change the unicode.translate docstring to document that by Walter Dörwald · 23 years ago
  77. 2023c9b Fix SF bug 599128, submitted by Inyeol Lee: .replace() would do the by Guido van Rossum · 23 years ago
  78. 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 23 years ago
  79. 76afbd9 Fix some endcase bugs in unicode rfind()/rindex() and endswith(). by Guido van Rossum · 23 years ago
  80. cc8764c Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. by Marc-André Lemburg · 23 years ago
  81. f36921c Unicode replace() method with empty pattern argument should fail, like by Guido van Rossum · 23 years ago
  82. ca84d65 Expanded the unittests for the new width sensitive PyUnicode_Contains(). by Raymond Hettinger · 23 years ago
  83. e067417 Added a test for PyUnicode_Contains() taking into account the width of by Barry Warsaw · 23 years ago
  84. 817918c Committing patch #591250 which provides "str1 in str2" when str1 is a by Barry Warsaw · 23 years ago
  85. a729daf Add encoding declaration. by Martin v. Löwis · 23 years ago
  86. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 23 years ago
  87. 8ac1495 Whitespace normalization. by Tim Peters · 23 years ago
  88. de02bcb Apply patch diff.txt from SF feature request http://www.python.org/sf/444708 by Walter Dörwald · 23 years ago
  89. 2ee4be0 Apply diff3.txt from SF patch http://www.python.org/sf/536241 by Walter Dörwald · 23 years ago
  90. 863ac44 Whitespace normalization. by Tim Peters · 23 years ago
  91. 068325e Apply the second version of SF patch http://www.python.org/sf/536241 by Walter Dörwald · 23 years ago
  92. ce0b664 Added test case for UTF-8 encoding bug #541828. by Marc-André Lemburg · 23 years ago
  93. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 23 years ago
  94. eddd68d As part of fixing bug #536241, add a test case for string.zfill() with Unicode by Andrew M. Kuchling · 23 years ago
  95. 047c05e Do not insert characters for unicode-escape decoders if the error mode by Martin v. Löwis · 23 years ago
  96. bd3be8f Fix to the UTF-8 encoder: it failed on 0-length input strings. by Marc-André Lemburg · 24 years ago
  97. 3688a88 Fix for the UTF-8 memory allocation bug and the UTF-8 encoding by Marc-André Lemburg · 24 years ago
  98. 2b29cb2 Skipping some tests by adding the usual jython conditional test around: by Finn Bock · 24 years ago
  99. 82285da Whitespace normalization. by Tim Peters · 24 years ago
  100. 41f0199 Adding test for Unicode repr()-output. by Marc-André Lemburg · 24 years ago