1. 578c395 bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636) by Serhiy Storchaka · 4 years, 3 months ago
  2. 113feb3 bpo-40328: Add tool for generating cjk mapping headers (GH-19602) by Dong-hee Na · 4 years, 3 months ago
  3. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 4 years, 4 months ago
  4. 8f87eef bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472) by Serhiy Storchaka · 4 years, 4 months ago
  5. cd8295f bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345) by Serhiy Storchaka · 4 years, 4 months ago
  6. 37fcbb6 bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119) by Dong-hee Na · 4 years, 5 months ago
  7. dffe4c0 bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601) by Andy Lester · 4 years, 5 months ago
  8. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 4 years, 6 months ago
  9. daa9756 bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393) by Victor Stinner · 4 years, 6 months ago
  10. bc7d3aa bpo-38631: Avoid Py_FatalError() in _multibytecodec init (GH-17233) by Victor Stinner · 4 years, 9 months ago
  11. 279f446 bpo-37206: Unrepresentable default values no longer represented as None. (GH-13933) by Serhiy Storchaka · 5 years ago
  12. 4901fe2 bpo-37034: Display argument name on errors with keyword arguments with Argument Clinic. (GH-13593) by Rémi Lapeyre · 5 years ago
  13. c4cacc8 Fix typos in comments, docs and test names (#15018) by Min ho Kim · 5 years ago
  14. 59ad110 bpo-37547: add _PyObject_CallMethodOneArg (GH-14685) by Jeroen Demeyer · 5 years ago
  15. 196a530 bpo-37483: add _PyObject_CallOneArg() function (#14558) by Jeroen Demeyer · 5 years ago
  16. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
  17. 5f45979 bpo-35194: cjkcodec: check the encoded value is not truncated (GH-10432) by Alexey Izbyshev · 5 years ago
  18. 3191391 bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-12058) by Serhiy Storchaka · 5 years ago
  19. 2a39d25 bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520) by Serhiy Storchaka · 6 years ago
  20. 4fa9591 bpo-35582: Argument Clinic: inline parsing code for positional parameters. (GH-11313) by Serhiy Storchaka · 6 years ago
  21. 32d96a2 bpo-23867: Argument Clinic: inline parsing code for a single positional parameter. (GH-9689) by Serhiy Storchaka · 6 years ago
  22. 842acaa bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11175) by Zackery Spytz · 6 years ago
  23. d4f9cf5 bpo-33029: Fix signatures of getter and setter functions. (GH-10746) by Serhiy Storchaka · 6 years ago
  24. 4a934d4 bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. (GH-6748) by Serhiy Storchaka · 6 years ago
  25. cdbcb77 cjkcodecs: Fix compiler warning (GH-10651) by Victor Stinner · 6 years ago
  26. 7a69cf4 bpo-35194: Fix a wrong constant in cp932 codec (GH-10420) by Alexey Izbyshev · 6 years ago
  27. 488c0a6 bpo-33578: Fix getstate/setstate for CJK decoder (GH-10290) by Christopher Thorne · 6 years ago
  28. ac22f6a bpo-33578: Add getstate/setstate for CJK codec (GH-6984) by Christopher Thorne · 6 years ago
  29. a5552f0 bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746) by Serhiy Storchaka · 7 years ago
  30. 138753c bpo-31275: Small refactoring to silence a fall-through warning. (#3206) by Stefan Krah · 7 years ago
  31. 6969eaf bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955) by Serhiy Storchaka · 7 years ago
  32. 7445381 bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051) by Sylvain · 7 years ago
  33. 89a5e03 bpo-30003: Fix handling escape characters in HZ codec (#1556) by Xiang Zhang · 7 years ago
  34. 9da408d bpo-29990: Fix range checking in GB18030 decoder (#1495) by Xiang Zhang · 7 years ago
  35. bf623ae bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096) by Serhiy Storchaka · 7 years ago
  36. 202fda5 bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485) by Serhiy Storchaka · 7 years ago
  37. 0c4a828 Run Argument Clinic: METH_VARARGS=>METH_FASTCALL by Victor Stinner · 8 years ago
  38. 259f0e4 Run Argument Clinic: METH_VARARGS=>METH_FASTCALL by Victor Stinner · 8 years ago
  39. 3e1fad6 Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords by Victor Stinner · 8 years ago
  40. 55ba38a Use _PyObject_CallMethodIdObjArgs() by Victor Stinner · 8 years ago
  41. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  42. ec406fe Issue #27810: Regenerate Argument Clinic. by Serhiy Storchaka · 8 years ago
  43. 9171a8b Issue #27574: Decreased an overhead of parsing keyword arguments in functions by Serhiy Storchaka · 8 years ago
  44. 2954f83 - Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  45. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  46. 5dee655 Issue #26305: Argument Clinic now uses braces in C code as required by PEP 7. by Serhiy Storchaka · 8 years ago
  47. 5a093c1 fix indentation and add curlies (closes #27093) by Benjamin Peterson · 8 years ago
  48. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  49. 4a1e70f Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 9 years ago
  50. 8cc80f1 Merge 3.4 by Victor Stinner · 9 years ago
  51. 579db16 Closes #23247: Fix a crash in the StreamWriter.reset() of CJK codecs by Victor Stinner · 9 years ago
  52. 8b2e8b6 Specify default values of semantic booleans in Argument Clinic generated signatures as booleans. by Serhiy Storchaka · 9 years ago
  53. dbfdc38 Issue #24001: Argument Clinic converters now use accept={type} by Larry Hastings · 9 years ago
  54. 247789c Issue #24007: Argument Clinic now writes the format of PyArg_Parse*() at the by Serhiy Storchaka · 9 years ago
  55. 89964c4 Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. by Larry Hastings · 9 years ago
  56. 8ef887c Issue #20586: Argument Clinic now ensures signatures on functions without docstrings. by Zachary Ware · 9 years ago
  57. 1009bf1 Issue #23501: Argumen Clinic now generates code into separate files by default. by Serhiy Storchaka · 9 years ago
  58. f024d26 Issue #23685: Fix usage of PyMODINIT_FUNC in _json, _scproxy, nis, pyexpat by Victor Stinner · 9 years ago
  59. df80706 Issue #23215: Multibyte codecs with custom error handlers that ignores errors by Serhiy Storchaka · 9 years ago
  60. a1543cd Issue #23215: Multibyte codecs with custom error handlers that ignores errors by Serhiy Storchaka · 9 years ago
  61. 53fa8b2 Fixed few compiler warnings. by Serhiy Storchaka · 9 years ago
  62. 82e07b9 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 10 years ago
  63. d3faf43 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 10 years ago
  64. 20b39b2 Removed redundant casts to `char *`. by Serhiy Storchaka · 10 years ago
  65. f2de1fc Issue #20152: Convert _multibytecodecs to Argument Clinic. by Brett Cannon · 10 years ago
  66. 3f36a57 Issue #19515: Remove identifiers duplicated in the same file. by Victor Stinner · 11 years ago
  67. 28c63f7 CJK codecs: less magical macros, semicolon is now explicit by Victor Stinner · 11 years ago
  68. 14c9fea CJK codecs: less magic macros, require explicit semicolon by Victor Stinner · 11 years ago
  69. 146a2ed CJK codecs: add newlines for readability by Victor Stinner · 11 years ago
  70. bd97ac3 CJK codecs: use less magic and more readable macros, write explicit if by Victor Stinner · 11 years ago
  71. 0a6e2c5 CJK codecs: remove unused TRYMAP_ENC_MPLANE macro by Victor Stinner · 11 years ago
  72. 11bdf91 Issue #18509: handle PyUnicode_Writer() error by Victor Stinner · 11 years ago
  73. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  74. d1f9942 Issue #18408: Fix cjkcodecs decoders, add a new MBERR_EXCEPTION constant to by Victor Stinner · 11 years ago
  75. 33283ba Issue #18408: Fix CJK decoders, raise MemoryError on memory allocation failure by Victor Stinner · 11 years ago
  76. 064bbdc fix indentation by Victor Stinner · 11 years ago
  77. 8f674cc Close #17694: Add minimum length to _PyUnicodeWriter by Victor Stinner · 11 years ago
  78. 322cc74 Issue #17693: Fix memory/reference leaks by Victor Stinner · 11 years ago
  79. d949126 Issue #17693: CJK encoders now use the new Unicode API (PEP 393) by Victor Stinner · 11 years ago
  80. a0dd021 Close #17693: Rewrite CJK decoders to use the _PyUnicodeWriter API instead of by Victor Stinner · 11 years ago
  81. 26e5335 merge 3.3 (#16585) by Benjamin Peterson · 12 years ago
  82. 47a00f3 support encoding error handlers that return bytes (closes #16585) by Benjamin Peterson · 12 years ago
  83. 3d490d4 merge 3.3 by Benjamin Peterson · 12 years ago
  84. aff4723 unicode -> str by Benjamin Peterson · 12 years ago
  85. b9e2d3f Issue #16330: Fix compilation on Windows by Victor Stinner · 12 years ago
  86. 76df43d Issue #16330: Use surrogate-related macros by Victor Stinner · 12 years ago
  87. b37b174 Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0) by Victor Stinner · 13 years ago
  88. 08b523a MultibyteCodec_Decode() catchs PyUnicode_AS_UNICODE() failures by Victor Stinner · 13 years ago
  89. 4eea849 CJK codecs checks for conversion to Py_UNICODE* failures by Victor Stinner · 13 years ago
  90. 9a80fab MultibyteCodec_Encode() checks if PyUnicode_AS_UNICODE() failed by Victor Stinner · 13 years ago
  91. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  92. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  93. 2cded9c Issue #12016: Multibyte CJK decoders now resynchronize faster by Victor Stinner · 13 years ago
  94. 2bc6c2e (Merge 3.2) Issue #12016: Reindent decoders of HK and JP codecs by Victor Stinner · 13 years ago
  95. 5dfe3bb Issue #12016: Reindent decoders of HK and JP codecs by Victor Stinner · 13 years ago
  96. e15dce3 Close #12171: IncrementalEncoder.reset() of CJK codecs (multibytecodec) calls by Victor Stinner · 13 years ago
  97. eb734f7 (Merge 3.2) Issue #12100: Don't reset incremental encoders of CJK codecs at by Victor Stinner · 13 years ago
  98. 6bcbef7 Issue #12100: Don't reset incremental encoders of CJK codecs at each call to by Victor Stinner · 13 years ago
  99. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  100. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago