1. 202fda5 bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485) by Serhiy Storchaka · 7 years ago
  2. cc16be8 Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) by Steve Dower · 8 years ago
  3. f5aba58 Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec lookup by Steve Dower · 8 years ago
  4. 2954f83 - Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  5. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  6. 2eb6b0d Issues #26716, #26057: Regenerate Argument Clinic code. by Serhiy Storchaka · 8 years ago
  7. 21a663e Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject(). by Serhiy Storchaka · 8 years ago
  8. c97a962 Issue #24824: Signatures of codecs.encode() and codecs.decode() now are by Serhiy Storchaka · 9 years ago
  9. 1aa5e1d Fixed compilation on Windows for issue #20173. by Serhiy Storchaka · 9 years ago
  10. 0c59ff6 Issue #20173: Converted the _codecs module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  11. 1009bf1 Issue #23501: Argumen Clinic now generates code into separate files by default. by Serhiy Storchaka · 9 years ago
  12. 8490f5a Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, and by Serhiy Storchaka · 9 years ago
  13. 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  14. 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  15. 582acb7 Merge issue 19548 changes from 3.4 by Nick Coghlan · 10 years ago
  16. b9fdb7a Issue 19548: update codecs module documentation by Nick Coghlan · 10 years ago
  17. a0f3375 Merge fix for issue #22166 from 3.4 by Nick Coghlan · 10 years ago
  18. 8fad167 Issue #22166: clear codec caches in test_codecs by Nick Coghlan · 10 years ago
  19. 049e509 Issue #22207: Fix "comparison between signed and unsigned integers" warning in by Victor Stinner · 10 years ago
  20. a57dfd0 Issue #21488: Add support of keyword arguments for codecs.encode and codecs.decode by Victor Stinner · 10 years ago
  21. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  22. c04ddff Issue #16096: Fix several occurrences of potential signed integer overflow. Thanks Serhiy Storchaka. by Mark Dickinson · 12 years ago
  23. adc417c #13406: fix more deprecation warnings and move the deprecation of unicode-internal earlier in the code. by Ezio Melotti · 13 years ago
  24. 11060a4 #13406: silence deprecation warnings in test_codecs. by Ezio Melotti · 13 years ago
  25. f72d4ef Plug some (unlikely) refleaks. by Antoine Pitrou · 13 years ago
  26. 9f4b1e9 Fix and deprecated the unicode_internal codec by Victor Stinner · 13 years ago
  27. 87a7c82 Fix build on Windows by Victor Stinner · 13 years ago
  28. 1db7c13 Port encoders from Py_UNICODE API to unicode object API. by Martin v. Löwis · 13 years ago
  29. 23e275b Port UCS1 and charmap codecs to new API. by Martin v. Löwis · 13 years ago
  30. 3a50e70 Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore by Victor Stinner · 13 years ago
  31. f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
  32. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  33. 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 13 years ago
  34. d118856 Merged revisions 81860 via svnmerge from by Antoine Pitrou · 14 years ago
  35. 3dcb5ac Issue #8838, #8339: Remove codecs.charbuffer_encode() and "t#" parsing format by Victor Stinner · 14 years ago
  36. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  37. 66a1bd5 Merged revisions 79779 via svnmerge from by Philip Jenvey · 14 years ago
  38. 8dc33d5 Merged revisions 72404-72406 via svnmerge from by Walter Dörwald · 15 years ago
  39. f07d002 Merged revisions 70342,70385-70387,70389-70390,70392-70393,70395,70400,70405-70406,70418,70438,70464,70468 via svnmerge from by Benjamin Peterson · 15 years ago
  40. 81fabdb Issue #4874: Most builtin decoders now reject unicode input. by Antoine Pitrou · 15 years ago
  41. f10a79a merge from trunk by Benjamin Peterson · 16 years ago
  42. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  43. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  44. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  45. 5d14c2b Merged revisions 59056-59076 via svnmerge from by Christian Heimes · 17 years ago
  46. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  47. 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago
  48. 36e0a92 Merged revisions 56443-56466 via svnmerge from by Guido van Rossum · 17 years ago
  49. 2233d27 Change readbuffer_encode() and charbuffer_encode() to return bytes objects. by Walter Dörwald · 17 years ago
  50. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  51. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  52. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  53. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  54. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  55. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  56. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  57. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  58. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  59. 9fd115c Whitespace cleanup. by Walter Dörwald · 19 years ago
  60. a47d1c0 SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain by Walter Dörwald · 19 years ago
  61. e2713be Build with --disable-unicode again. Fixes #1158607. Will backport to 2.4. by Martin v. Löwis · 19 years ago
  62. 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 20 years ago
  63. 3e377de Change some declarations from ``char *`` to ``const char *``. Also added by Brett Cannon · 20 years ago
  64. 3f41974 Add generic codecs.encode() and .decode() APIs that don't impose by Marc-André Lemburg · 20 years ago
  65. 29273c8 Fix for [ 543344 ] Interpreter crashes when recoding; suggested by Marc-André Lemburg · 21 years ago
  66. 0ae2981 Add docstrings to register, lookup, register_error by Walter Dörwald · 22 years ago
  67. 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 22 years ago
  68. 8a8da79 Patch #505705: Remove eval in pickle and cPickle. by Martin v. Löwis · 22 years ago
  69. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  70. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  71. 43b936d Patch #477750: Use METH_ constants in Modules. by Martin v. Löwis · 22 years ago
  72. c60e6f7 Patch #435971: UTF-7 codec by Brian Quinlan. by Marc-André Lemburg · 23 years ago
  73. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  74. 3083163 experimental UCS-4 support: don't assume that MS_WIN32 implies by Fredrik Lundh · 23 years ago
  75. 4157dd5 Fix for bug [ #433047 ] missing args to PyArg_ParseTuple by Marc-André Lemburg · 23 years ago
  76. b425f5e Added a true unicode_internal_encode function and fixed the by Marc-André Lemburg · 24 years ago
  77. 16b1ad9 Changing the CNRI copyright notice according to CNRI's instructions. by Guido van Rossum · 24 years ago
  78. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  79. 5f0e29e Modified the encode interfaces of all builtin codecs to accept by Marc-André Lemburg · 24 years ago
  80. 24bdb04 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  81. e2d67f9 Internal module _codecs -- Provides access to the codec registry and by Guido van Rossum · 24 years ago