1. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  2. ec406fe Issue #27810: Regenerate Argument Clinic. by Serhiy Storchaka · 8 years ago
  3. 9171a8b Issue #27574: Decreased an overhead of parsing keyword arguments in functions by Serhiy Storchaka · 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. 5dee655 Issue #26305: Argument Clinic now uses braces in C code as required by PEP 7. by Serhiy Storchaka · 8 years ago
  7. 5a093c1 fix indentation and add curlies (closes #27093) by Benjamin Peterson · 8 years ago
  8. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  9. 4a1e70f Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 8 years ago
  10. 8cc80f1 Merge 3.4 by Victor Stinner · 9 years ago
  11. 579db16 Closes #23247: Fix a crash in the StreamWriter.reset() of CJK codecs by Victor Stinner · 9 years ago
  12. 8b2e8b6 Specify default values of semantic booleans in Argument Clinic generated signatures as booleans. by Serhiy Storchaka · 9 years ago
  13. dbfdc38 Issue #24001: Argument Clinic converters now use accept={type} by Larry Hastings · 9 years ago
  14. 247789c Issue #24007: Argument Clinic now writes the format of PyArg_Parse*() at the by Serhiy Storchaka · 9 years ago
  15. 89964c4 Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. by Larry Hastings · 9 years ago
  16. 8ef887c Issue #20586: Argument Clinic now ensures signatures on functions without docstrings. by Zachary Ware · 9 years ago
  17. 1009bf1 Issue #23501: Argumen Clinic now generates code into separate files by default. by Serhiy Storchaka · 9 years ago
  18. f024d26 Issue #23685: Fix usage of PyMODINIT_FUNC in _json, _scproxy, nis, pyexpat by Victor Stinner · 9 years ago
  19. df80706 Issue #23215: Multibyte codecs with custom error handlers that ignores errors by Serhiy Storchaka · 9 years ago
  20. a1543cd Issue #23215: Multibyte codecs with custom error handlers that ignores errors by Serhiy Storchaka · 9 years ago
  21. 53fa8b2 Fixed few compiler warnings. by Serhiy Storchaka · 9 years ago
  22. 82e07b9 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 9 years ago
  23. d3faf43 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 9 years ago
  24. 20b39b2 Removed redundant casts to `char *`. by Serhiy Storchaka · 10 years ago
  25. f2de1fc Issue #20152: Convert _multibytecodecs to Argument Clinic. by Brett Cannon · 10 years ago
  26. 3f36a57 Issue #19515: Remove identifiers duplicated in the same file. by Victor Stinner · 11 years ago
  27. 28c63f7 CJK codecs: less magical macros, semicolon is now explicit by Victor Stinner · 11 years ago
  28. 14c9fea CJK codecs: less magic macros, require explicit semicolon by Victor Stinner · 11 years ago
  29. 146a2ed CJK codecs: add newlines for readability by Victor Stinner · 11 years ago
  30. bd97ac3 CJK codecs: use less magic and more readable macros, write explicit if by Victor Stinner · 11 years ago
  31. 0a6e2c5 CJK codecs: remove unused TRYMAP_ENC_MPLANE macro by Victor Stinner · 11 years ago
  32. 11bdf91 Issue #18509: handle PyUnicode_Writer() error by Victor Stinner · 11 years ago
  33. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  34. d1f9942 Issue #18408: Fix cjkcodecs decoders, add a new MBERR_EXCEPTION constant to by Victor Stinner · 11 years ago
  35. 33283ba Issue #18408: Fix CJK decoders, raise MemoryError on memory allocation failure by Victor Stinner · 11 years ago
  36. 064bbdc fix indentation by Victor Stinner · 11 years ago
  37. 8f674cc Close #17694: Add minimum length to _PyUnicodeWriter by Victor Stinner · 11 years ago
  38. 322cc74 Issue #17693: Fix memory/reference leaks by Victor Stinner · 11 years ago
  39. d949126 Issue #17693: CJK encoders now use the new Unicode API (PEP 393) by Victor Stinner · 11 years ago
  40. a0dd021 Close #17693: Rewrite CJK decoders to use the _PyUnicodeWriter API instead of by Victor Stinner · 11 years ago
  41. 26e5335 merge 3.3 (#16585) by Benjamin Peterson · 12 years ago
  42. 47a00f3 support encoding error handlers that return bytes (closes #16585) by Benjamin Peterson · 12 years ago
  43. 3d490d4 merge 3.3 by Benjamin Peterson · 12 years ago
  44. aff4723 unicode -> str by Benjamin Peterson · 12 years ago
  45. b9e2d3f Issue #16330: Fix compilation on Windows by Victor Stinner · 12 years ago
  46. 76df43d Issue #16330: Use surrogate-related macros by Victor Stinner · 12 years ago
  47. b37b174 Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0) by Victor Stinner · 13 years ago
  48. 08b523a MultibyteCodec_Decode() catchs PyUnicode_AS_UNICODE() failures by Victor Stinner · 13 years ago
  49. 4eea849 CJK codecs checks for conversion to Py_UNICODE* failures by Victor Stinner · 13 years ago
  50. 9a80fab MultibyteCodec_Encode() checks if PyUnicode_AS_UNICODE() failed by Victor Stinner · 13 years ago
  51. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  52. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  53. 2cded9c Issue #12016: Multibyte CJK decoders now resynchronize faster by Victor Stinner · 13 years ago
  54. 2bc6c2e (Merge 3.2) Issue #12016: Reindent decoders of HK and JP codecs by Victor Stinner · 13 years ago
  55. 5dfe3bb Issue #12016: Reindent decoders of HK and JP codecs by Victor Stinner · 13 years ago
  56. e15dce3 Close #12171: IncrementalEncoder.reset() of CJK codecs (multibytecodec) calls by Victor Stinner · 13 years ago
  57. eb734f7 (Merge 3.2) Issue #12100: Don't reset incremental encoders of CJK codecs at by Victor Stinner · 13 years ago
  58. 6bcbef7 Issue #12100: Don't reset incremental encoders of CJK codecs at each call to by Victor Stinner · 13 years ago
  59. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  60. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  61. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  62. b173f78 add a replacement API for PyCObject, PyCapsule #5630 by Benjamin Peterson · 15 years ago
  63. 944820b Issue #5640: Fix _multibytecodec so that CJK codecs don't repeat by Hye-Shik Chang · 15 years ago
  64. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  65. 44bf631 Followup of #4874: also fix multibytecodec.c by Antoine Pitrou · 15 years ago
  66. f10a79a merge from trunk by Benjamin Peterson · 16 years ago
  67. 078f0f5 Issue #3575: Incremental decoder's decode function now takes bytearray by Hirokazu Yamamoto · 16 years ago
  68. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  69. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  70. 3dbca81 Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-65099,65127-65128,65131,65133-65136,65139,65149-65151,65155,65158-65159,65176-65178,65183-65184,65187-65190,65192,65194 via svnmerge from by Georg Brandl · 16 years ago
  71. 9c74b14 Merged revisions 64114 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  72. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  73. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  74. 77c02eb Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617-60678 via svnmerge from by Christian Heimes · 16 years ago
  75. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 16 years ago
  76. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  77. 0449f63 Merged revisions 59488-59511 via svnmerge from by Christian Heimes · 17 years ago
  78. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  79. 3ee05af Stream functions like read() are supposed to return bytes, not buffer. by Amaury Forgeot d'Arc · 17 years ago
  80. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  81. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  82. e1a0d11 #1316: remove redundant PyLong_Check calls when PyInt_Check was already called. by Georg Brandl · 17 years ago
  83. 5616c6d Fix a couple of warnings by Neal Norwitz · 17 years ago
  84. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  85. 61e21b5 Merged revisions 57152-57220 via svnmerge from by Guido van Rossum · 17 years ago
  86. 806c246 Merged revisions 56753-56781 via svnmerge from by Guido van Rossum · 17 years ago
  87. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  88. 27ff74d Fix another issue likely introduced by the merge. by Guido van Rossum · 17 years ago
  89. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  90. 024da5c Make all the multibyte codec tests pass. by Guido van Rossum · 17 years ago
  91. f4cfc8f Make test_codecs work. The CJK codecs now use bytes instead of str8 for by Guido van Rossum · 17 years ago
  92. af199fa Allow encoding names to be unicode strings. by Guido van Rossum · 17 years ago
  93. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 17 years ago
  94. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  95. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  96. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  97. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  98. 13247bf Add empty __init__ methods for stateful multibytecodec instances. by Hye-Shik Chang · 18 years ago
  99. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  100. abb903f Bug #1448490: Fix a bug that ISO-2022 codecs could not handle by Hye-Shik Chang · 18 years ago