1. 00d7abd bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) by Victor Stinner · 3 years, 8 months ago
  2. 384621c bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056) by Victor Stinner · 4 years, 2 months ago
  3. 37bb289 bpo-40943: PY_SSIZE_T_CLEAN required for '#' formats (GH-20784) by Victor Stinner · 4 years, 2 months ago
  4. 2c4928d bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878) by Inada Naoki · 4 years, 2 months ago
  5. d36cf5f bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781) by Victor Stinner · 4 years, 2 months ago
  6. 5f4b229d bpo-40792: Make the result of PyNumber_Index() always having exact type int. (GH-20443) by Serhiy Storchaka · 4 years, 3 months ago
  7. 578c395 bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636) by Serhiy Storchaka · 4 years, 3 months ago
  8. cd8295f bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345) by Serhiy Storchaka · 4 years, 4 months ago
  9. 87ec86c bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980) by Dong-hee Na · 4 years, 5 months ago
  10. a102ed7 bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391) by Victor Stinner · 4 years, 6 months ago
  11. 75bb07e bpo-39028: Performance enhancement in keyword extraction (GH-17576) by Sebastian Berg · 4 years, 8 months ago
  12. 5bc6a7c bpo-38540: Fix possible leak in PyArg_Parse for "es#" and "et#". (GH-16869) by Serhiy Storchaka · 4 years, 10 months ago
  13. 0b60f64 bpo-11410: Standardize and use symbol visibility attributes across POSIX and Windows. (GH-16347) by Vinay Sajip · 4 years, 10 months ago
  14. 2ec7010 bpo-37752: Delete redundant Py_CHARMASK in normalizestring() (GH-15095) by Jordon Xu · 5 years ago
  15. 4901fe2 bpo-37034: Display argument name on errors with keyword arguments with Argument Clinic. (GH-13593) by Rémi Lapeyre · 5 years ago
  16. aef9ad8 bpo-37942: Improve argument clinic float converter (GH-15470) by Raymond Hettinger · 5 years ago
  17. 0567786 bpo-37540: vectorcall: keyword names must be strings (GH-14682) by Jeroen Demeyer · 5 years ago
  18. d3c72a2 bpo-36381: warn when no PY_SSIZE_T_CLEAN defined (GH-12473) by Inada Naoki · 5 years ago
  19. 1b0393d bpo-36127: Fix compiler warning in _PyArg_UnpackKeywords(). (GH-12353) by Serhiy Storchaka · 5 years ago
  20. 3191391 bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-12058) by Serhiy Storchaka · 5 years ago
  21. 2c0d3f4 bpo-36254: Fix yet one invalid use of %d in format string in C. (GH-12318) by Serhiy Storchaka · 5 years ago
  22. f2f55e7 bpo-36282: Improved error message for too much positional arguments. (GH-12310) by Serhiy Storchaka · 5 years ago
  23. d53fe5f bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264) by Serhiy Storchaka · 5 years ago
  24. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 5 years ago
  25. 6a44f6e bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952) by Serhiy Storchaka · 5 years ago
  26. 4fa9591 bpo-35582: Argument Clinic: inline parsing code for positional parameters. (GH-11313) by Serhiy Storchaka · 6 years ago
  27. 32d96a2 bpo-23867: Argument Clinic: inline parsing code for a single positional parameter. (GH-9689) by Serhiy Storchaka · 6 years ago
  28. 6326278 bpo-34193: Fix pluralization in getargs.c and test cases. (GH-8438) by Xtreak · 6 years ago
  29. ec13b93 bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705) by Victor Stinner · 6 years ago
  30. d17a693 bpo-35199: Add an internal _PyTuple_ITEMS() macro (GH-10434) by Victor Stinner · 6 years ago
  31. 1426daa bpo-34127: Fix grammar in error message with respect to argument count (GH-8395) by Xtreak · 6 years ago
  32. 504373c bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192) by Serhiy Storchaka · 6 years ago
  33. c3d9508 bpo-32746: Fix multiple typos (GH-5144) by Leo Arias · 7 years ago
  34. a5552f0 bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746) by Serhiy Storchaka · 7 years ago
  35. 2bb69a5 bpo-31373: remove overly strict float range checks (#3486) by Benjamin Peterson · 7 years ago
  36. a853a8b bpo-31373: fix undefined floating-point demotions (#3396) by Benjamin Peterson · 7 years ago
  37. bf9075a bpo-31229: Fixed wrong error messages when too many keyword arguments are received. (#3180) by Oren Milman · 7 years ago
  38. f432a32 bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157) by Stefan Krah · 7 years ago
  39. e7bc7aa bpo-9566: Fix a warning in Python/getargs.c (#2890) by Segev Finer · 7 years ago
  40. 7e60192 Remove _PyArg_NoStackKeywords(). (#2641) by Serhiy Storchaka · 7 years ago
  41. f9f1cca Fix regression in error message introduced in bpo-29951. (#2028) by Serhiy Storchaka · 7 years ago
  42. 5eb788b bpo-30534: Fixed error messages when pass keyword arguments (#1901) by Serhiy Storchaka · 7 years ago
  43. 64c8f70 bpo-29951: Include function name for some error messages in `PyArg_ParseTuple*` (#916) by Michael Seifert · 7 years ago
  44. 68a001d Issue #29460: _PyArg_NoKeywords(), _PyArg_NoStackKeywords() and by Serhiy Storchaka · 8 years ago
  45. fdbc397 Issue #29286: Rename private PyArg_UnpackStack_impl() to unpack_stack() by Victor Stinner · 8 years ago
  46. 1741441 Issue #29029: Speed up processing positional arguments in by Serhiy Storchaka · 8 years ago
  47. fe54dd8 Add _PyArg_UnpackStack() function helper by Victor Stinner · 8 years ago
  48. 29d39cc Add _PyArg_NoStackKeywords() helper function by Victor Stinner · 8 years ago
  49. 6518a93 Add _PyArg_ParseStack() helper function by Victor Stinner · 8 years ago
  50. 3e1fad6 Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords by Victor Stinner · 8 years ago
  51. c0083fc Rename keywords to kwargs in getargs.c by Victor Stinner · 8 years ago
  52. 80ab22f Cleanup getargs.c by Victor Stinner · 8 years ago
  53. 5ab81d7 Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict. by Serhiy Storchaka · 8 years ago
  54. 460bd0d Issue #19569: Compiler warnings are now emitted if use most of deprecated by Serhiy Storchaka · 8 years ago
  55. 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 8 years ago
  56. 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  57. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  58. 2f2fee1 va_end() all va_copy()ed va_lists. by Christian Heimes · 8 years ago
  59. 0c21214 replace usage of Py_VA_COPY with the (C99) standard va_copy by Benjamin Peterson · 8 years ago
  60. 4eef505 Backed out changeset 3934e070c9db by Benjamin Peterson · 8 years ago
  61. c7454ff Issue #27810: Fix getargs.c compilation on Windows by Victor Stinner · 8 years ago
  62. 819a46f fix export of size_t parse stack function by Benjamin Peterson · 8 years ago
  63. f0ccbbb Emit METH_FASTCALL code in Argument Clinic by Victor Stinner · 8 years ago
  64. a9efb2f Add METH_FASTCALL calling convention by Victor Stinner · 8 years ago
  65. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  66. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  67. 9171a8b Issue #27574: Decreased an overhead of parsing keyword arguments in functions by Serhiy Storchaka · 8 years ago
  68. f41b82f Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now support by Serhiy Storchaka · 8 years ago
  69. 21a663e Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject(). by Serhiy Storchaka · 8 years ago
  70. 9423023 Minor code cleanup for PyArg_UnpackTuple. by Raymond Hettinger · 8 years ago
  71. a9725f8 Issue #26312: SystemError is now raised in all programming bugs with using by Serhiy Storchaka · 9 years ago
  72. 4cd63ef Issue #26198: ValueError is now raised instead of TypeError on buffer by Serhiy Storchaka · 9 years ago
  73. 3e17c78 Issue #26198: Fixed error messages for some argument parsing errors. by Serhiy Storchaka · 9 years ago
  74. c4b813d Issue #26198: Fixed error messages for some argument parsing errors. by Serhiy Storchaka · 9 years ago
  75. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
  76. db46fea Fixed error message for the "u#" format code. by Serhiy Storchaka · 9 years ago
  77. d6e53da Fixed error message for the "u#" format code. by Serhiy Storchaka · 9 years ago
  78. 92bf919 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  79. b757c83 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  80. 861470c #16518: Bring error messages in harmony with docs ("bytes-like object") by R David Murray · 10 years ago
  81. d8a1447 Issue #22215: Now ValueError is raised instead of TypeError when str or bytes by Serhiy Storchaka · 10 years ago
  82. 98ea54c Issue #22156: Fix "comparison between signed and unsigned integers" compiler by Victor Stinner · 10 years ago
  83. 40be9e5 remove dynamic initializer lists for c89 compliance (closes #20595) by Benjamin Peterson · 11 years ago
  84. b7ccb20 Issue #20294: Argument Clinic now supports argument parsing for __new__ and by Larry Hastings · 11 years ago
  85. cb29ec5 PY_FORMAT_SIZE_T should not be used with PyErr_Format(), PyErr_Format("%zd") is by Victor Stinner · 11 years ago
  86. 74387f5 Use Py_ssize_t type for sizes in getargs.c by Victor Stinner · 11 years ago
  87. 79ed4c7 remove an outdated comment by Victor Stinner · 11 years ago
  88. 142ad66 Re #18521: move array bounds check before array access. by Georg Brandl · 11 years ago
  89. 9550ef3 Issue #9566: Fix compilater warnings on Windows 64-bit by Victor Stinner · 11 years ago
  90. 25296ce Use PY_FORMAT_SIZE_T because Visual Studio does not understand %zd format. by Richard Oudkerk · 11 years ago
  91. 84bb1cf Fix compilater warnings on Windows 64-bit by Victor Stinner · 11 years ago
  92. 7056cb2 Issue #17170: speed up PyArg_ParseTuple[AndKeywords] a bit. by Antoine Pitrou · 11 years ago
  93. c73c561 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 12 years ago
  94. 4de7457 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 12 years ago
  95. 879329d Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641 by Christian Heimes · 12 years ago
  96. 48d8d21 Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641 by Christian Heimes · 12 years ago
  97. a1b0c9f PyArg_Parse*("U"): ensure that the Unicode string is ready by Victor Stinner · 12 years ago
  98. a347901 Issue #14746: Remove redundant paragraphs from skipitem() in Python/getargs.c. by Larry Hastings · 12 years ago
  99. d3f424f Merge from 3.2. Issue #14749: Add support for 'Z' to skipitem(). by Larry Hastings · 12 years ago
  100. d9e4a41 Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c. by Larry Hastings · 12 years ago