1. 44b548d #27364: fix "incorrect" uses of escape character in the stdlib. by R David Murray · 8 years ago
  2. e437a10 Issue #23277: Remove unused imports in tests. by Serhiy Storchaka · 8 years ago
  3. c0937f7 Issue #24102: Fixed exception type checking in standard error handlers. by Serhiy Storchaka · 9 years ago
  4. ca7fecb Issue #24102: Fixed exception type checking in standard error handlers. by Serhiy Storchaka · 9 years ago
  5. b8a78d3 Use non-zero and non-last positions in error handler tests. by Serhiy Storchaka · 9 years ago
  6. 05d5473 Use non-zero and non-last positions in error handler tests. by Serhiy Storchaka · 9 years ago
  7. 93f4d4c Increased coverage of standard codec error handlers. by Serhiy Storchaka · 9 years ago
  8. 98d156b Increased coverage of standard codec error handlers. by Serhiy Storchaka · 9 years ago
  9. 07985ef Issue #22286: The "backslashreplace" error handlers now works with by Serhiy Storchaka · 9 years ago
  10. 166ebc4 Issue #19676: Added the "namereplace" error handler. by Serhiy Storchaka · 10 years ago
  11. e49a95f Issue #21118: str.translate() now raises a ValueError, not a TypeError, if the by Victor Stinner · 10 years ago
  12. 3e9a9ae Update various test modules to use unittest.main() for test discovery by Brett Cannon · 11 years ago
  13. 24193de Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder. by Serhiy Storchaka · 11 years ago
  14. d679377 Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder. by Serhiy Storchaka · 11 years ago
  15. 6f80f5d Issue #15379: Fix passing of non-BMP characters as integers for the charmap decoder (already working as unicode strings). by Antoine Pitrou · 12 years ago
  16. adc417c #13406: fix more deprecation warnings and move the deprecation of unicode-internal earlier in the code. by Ezio Melotti · 13 years ago
  17. 040e16e "unicode_internal" codec has been deprecated: fix related tests by Victor Stinner · 13 years ago
  18. 3d32519 Port code page codec to Unicode API. by Martin v. Löwis · 13 years ago
  19. 00b2c86 Fix text failures when ctypes is not available by Antoine Pitrou · 13 years ago
  20. a9860ae #13054: fix usage of sys.maxunicode after PEP-393. by Ezio Melotti · 13 years ago
  21. ef17f12 Fix test_codeccallbacks for Windows: check size of wchar_t, not sys.maxunicode by Victor Stinner · 13 years ago
  22. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  23. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  24. e4a1892 Issue #9804: ascii() now always represents unicode surrogate pairs as by Antoine Pitrou · 14 years ago
  25. 57221d0 Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629. by Ezio Melotti · 14 years ago
  26. 934896d Merged revisions 69846 via svnmerge from by Mark Dickinson · 15 years ago
  27. b58dda7 Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 via svnmerge from by Benjamin Peterson · 15 years ago
  28. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  29. 3c50ea4 rename HTMLParser to html.parser and htmlentitydefs to html.entities; by Fred Drake · 16 years ago
  30. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  31. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  32. edbcc13 Remove a test case which is no longer valid. by Georg Brandl · 17 years ago
  33. bd1c68c Patch #1303: Adapt str8 constructor to bytes (now buffer) one. by Georg Brandl · 17 years ago
  34. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  35. 09549f4 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  36. 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago
  37. e78178e Bytes (which are the input for decoding) are mutable now. If a decoding by Walter Dörwald · 17 years ago
  38. 32a4c71 Patch by Ron Adam: Don't use u prefix in unicode error messages by Walter Dörwald · 17 years ago
  39. fee1af9 Fix test_codeccallbacks.py: bytes has no % operator. by Walter Dörwald · 17 years ago
  40. d203431 Add 'U'/'U#' format characters to Py_BuildValue (and thus by Walter Dörwald · 17 years ago
  41. 00048f0 test_codeccallbacks.py passes again. by Walter Dörwald · 17 years ago
  42. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  43. 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 17 years ago
  44. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  45. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  46. 690402f Add tests to increase code coverage in Python/codecs.c and Python/exceptions.c. by Walter Dörwald · 19 years ago
  47. e22d339 Add tests for various error cases and for readbuffer_encode() and by Walter Dörwald · 19 years ago
  48. a47d1c0 SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain by Walter Dörwald · 19 years ago
  49. 29ddfba Fix copy & paste error in comments. by Walter Dörwald · 20 years ago
  50. 58eb11c Whitespace normalization. by Tim Peters · 20 years ago
  51. 4894c30 Fix a bug in the memory reallocation code of PyUnicode_TranslateCharmap(). by Walter Dörwald · 21 years ago
  52. a54b92b Add a unicode prefix to the characters in the UnicodeEncodeError and by Walter Dörwald · 21 years ago
  53. fd196bd Enhance message for UnicodeEncodeError and UnicodeTranslateError. by Walter Dörwald · 21 years ago
  54. 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 21 years ago
  55. 1b0be2d Use the new htmlentitydefs.codepoint2name for test_xmlcharnamereplace() by Walter Dörwald · 21 years ago
  56. f2715e0 Whitespace normalization. by Tim Peters · 21 years ago
  57. 2e0b18a Change the treatment of positions returned by PEP293 by Walter Dörwald · 21 years ago
  58. ea4250d Add comments and remove duplicate tests. by Walter Dörwald · 21 years ago
  59. 0cb27dd Make the test scripts work again with narrow Python builds. by Walter Dörwald · 21 years ago
  60. 30537a4 Add a few test cases to increase code coverage: by Walter Dörwald · 21 years ago
  61. 00445d2 Fix typo in comment. by Walter Dörwald · 22 years ago
  62. 74a530d Update character names. by Martin v. Löwis · 22 years ago
  63. 3de7526 Whitespace normalization. by Tim Peters · 22 years ago
  64. 9ab7dd4 Add a test case that checks that the proper exception is raises by Walter Dörwald · 22 years ago
  65. 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 22 years ago