1. 12446e6 bpo-40179: Fix translation of #elif in Argument Clinic (GH-19364) by Serhiy Storchaka · 4 years, 4 months ago
  2. 9aeb0ef bpo-39573: Update clinic to use Py_IS_TYPE() function (GH-18507) by Dong-hee Na · 4 years, 6 months ago
  3. 5136e72 argument-clinic: Simplify multi-line string handling (GH-17852) by Dong-hee Na · 4 years, 7 months ago
  4. a9ed91e bpo-27961: Replace PY_LONG_LONG with long long. (GH-15386) by Sergey Fedoseev · 4 years, 10 months ago
  5. 279f446 bpo-37206: Unrepresentable default values no longer represented as None. (GH-13933) by Serhiy Storchaka · 5 years ago
  6. 4901fe2 bpo-37034: Display argument name on errors with keyword arguments with Argument Clinic. (GH-13593) by Rémi Lapeyre · 5 years ago
  7. aef9ad8 bpo-37942: Improve argument clinic float converter (GH-15470) by Raymond Hettinger · 5 years ago
  8. 5df4025 Add description to the command line help of the argument clinic (GH-8518) by Tim Hoffmann · 5 years ago
  9. 3191391 bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-12058) by Serhiy Storchaka · 5 years ago
  10. 6a44f6e bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952) by Serhiy Storchaka · 5 years ago
  11. 463572c bpo-36101: remove non-ascii characters in docstring (GH-12018) by animalize · 5 years ago
  12. 2a39d25 bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520) by Serhiy Storchaka · 6 years ago
  13. 4fa9591 bpo-35582: Argument Clinic: inline parsing code for positional parameters. (GH-11313) by Serhiy Storchaka · 6 years ago
  14. 32d96a2 bpo-23867: Argument Clinic: inline parsing code for a single positional parameter. (GH-9689) by Serhiy Storchaka · 6 years ago
  15. 65ce60a bpo-20180: Simplify char_converter in Argument Clinic. (GH-9828) by Serhiy Storchaka · 6 years ago
  16. 4db62e1 bpo-35490: Remove the DecodeFSDefault return converter in AC. (#11152) by Serhiy Storchaka · 6 years ago
  17. afb3e71 bpo-35489: Use "const Py_UNICODE *" for the Py_UNICODE converter in AC. (GH-11150) by Serhiy Storchaka · 6 years ago
  18. 4a934d4 bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. (GH-6748) by Serhiy Storchaka · 6 years ago
  19. 3f22811 bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445) by Serhiy Storchaka · 6 years ago
  20. 1401018 Remove wording that could be deemed to be perjorative (GH-9287) by Raymond Hettinger · 6 years ago
  21. 65fc98e bpo-26901: Fix the Argument Clinic test suite (GH-8879) by Victor Stinner · 6 years ago
  22. 7cb7bcf bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic. (GH-8434) by Serhiy Storchaka · 6 years ago
  23. c929df3 bpo-20180: complete AC conversion of Objects/stringlib/transmogrify.h (GH-8039) by Tal Einat · 6 years ago
  24. a5552f0 bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746) by Serhiy Storchaka · 7 years ago
  25. 4f57409 bpo-31926: fix missing *_METHODDEF statements by argument clinic (#4230) by Tal Einat · 7 years ago
  26. 6969eaf bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955) by Serhiy Storchaka · 7 years ago
  27. 7445381 bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051) by Sylvain · 7 years ago
  28. 178418a bpo-30492: Allow make clinic to work out of tree. (#1836) by Gregory P. Smith · 7 years ago
  29. d4edfc9 bpo-29935: Fixed error messages in the index() method of tuple, list and deque (#887) by Serhiy Storchaka · 7 years ago
  30. 762bf40 bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716) by Serhiy Storchaka · 7 years ago
  31. d6debb2 bpo-29919: Remove unused imports found by pyflakes (#137) by Victor Stinner · 7 years ago
  32. 80ec836 bpo-29748: Added the slice index converter in Argument Clinic. (#549) by Serhiy Storchaka · 7 years ago
  33. 202fda5 bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485) by Serhiy Storchaka · 7 years ago
  34. b5c51d3 bpo-20185: Convert float object implementation to Argument Clinic. (#543) by Serhiy Storchaka · 7 years ago
  35. 093119e Argument Clinic: Use METH_FASTCALL for boring positionals by Victor Stinner · 8 years ago
  36. 0c8c389 Argument Clinic: Use METH_FASTCALL for positionals by Victor Stinner · 8 years ago
  37. 3e1fad6 Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords by Victor Stinner · 8 years ago
  38. f0ccbbb Emit METH_FASTCALL code in Argument Clinic by Victor Stinner · 8 years ago
  39. 44b548d #27364: fix "incorrect" uses of escape character in the stdlib. by R David Murray · 8 years ago
  40. cc85449 clinic: PY_LONG_LONG -> long long by Benjamin Peterson · 8 years ago
  41. 9171a8b Issue #27574: Decreased an overhead of parsing keyword arguments in functions by Serhiy Storchaka · 8 years ago
  42. 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 8 years ago
  43. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 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. f41b82f Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now support by Serhiy Storchaka · 8 years ago
  47. 5dee655 Issue #26305: Argument Clinic now uses braces in C code as required by PEP 7. by Serhiy Storchaka · 8 years ago
  48. ebe95fd Issue #26305: Argument Clinic now escapes braces. No need to double them. by Serhiy Storchaka · 8 years ago
  49. 5b6f0aa Remove duplicated tests. by Serhiy Storchaka · 8 years ago
  50. 4177e7c Issue #26316: Fix variable name typo in Argument Clinic by Martin Panter · 8 years ago
  51. 38337d1 Issue #24000: Improved Argument Clinic's mapping of converters to legacy by Larry Hastings · 9 years ago
  52. dbfdc38 Issue #24001: Argument Clinic converters now use accept={type} by Larry Hastings · 9 years ago
  53. 247789c Issue #24007: Argument Clinic now writes the format of PyArg_Parse*() at the by Serhiy Storchaka · 9 years ago
  54. 7f90cba Issue #23935: Argument Clinic's understanding of format units by Larry Hastings · 9 years ago
  55. 89964c4 Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. by Larry Hastings · 9 years ago
  56. 5aec1a4 Merge with 3.4 by Zachary Ware · 9 years ago
  57. bbbbe7e Make Argument Clinic's '--make' option work on Windows. by Zachary Ware · 9 years ago
  58. 8ef887c Issue #20586: Argument Clinic now ensures signatures on functions without docstrings. by Zachary Ware · 9 years ago
  59. 92e8af6 Issue #23492: Argument Clinic now generates argument parsing code with by Serhiy Storchaka · 9 years ago
  60. 1009bf1 Issue #23501: Argumen Clinic now generates code into separate files by default. by Serhiy Storchaka · 9 years ago
  61. 0759f84 Issue #23500: Argument Clinic is now smarter about generating the "#ifndef" by Larry Hastings · 9 years ago
  62. c2ccce7 Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 9 years ago
  63. a60c2fe Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 9 years ago
  64. 5d43833 Issue #22823: Use set literals instead of creating a set from a tuple. by Serhiy Storchaka · 10 years ago
  65. 1ed2e69 Issue #22186: Fix typos in Lib/. by Berker Peksag · 10 years ago
  66. f23530f Issue #22186: Fix typos in Lib/. by Berker Peksag · 10 years ago
  67. dfbeb16 Issue #22615: Argument Clinic now supports the "type" argument for the by Larry Hastings · 10 years ago
  68. a73cb8a Issue #22120: For functions using an unsigned integer return converter, by Larry Hastings · 10 years ago
  69. e1b8253 Argument Clinic bugfix: Don't let the C preprocessor "Monitor" see lines by Larry Hastings · 10 years ago
  70. f150378 Issue #21629: Fix Argument Clinic's "--converters" feature. by Larry Hastings · 10 years ago
  71. 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 11 years ago
  72. 7726ac9 #Issue 20456: Several improvements and bugfixes for Argument Clinic, by Larry Hastings · 11 years ago
  73. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 11 years ago
  74. f0537e8 Issue #20390: Final fix, for generating NoPositional/NoKeyword for __init__ calls. by Larry Hastings · 11 years ago
  75. f256c22 Fix for catestrophic errors in previous checkin (Argument Clinic rollup patch). by Larry Hastings · 11 years ago
  76. c204726 Issue #20390: Small fixes and improvements for Argument Clinic. by Larry Hastings · 11 years ago
  77. 9d7849f Issue #20376: Argument Clinic now escapes backslashes in docstrings. by Zachary Ware · 11 years ago
  78. 021bb87 Issue #20381: Fix sanity checking on default arguments when c_default is by Zachary Ware · 11 years ago
  79. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
  80. 4625826 Two minor Argument Clinic bugfixes: use the name of the class in the by Larry Hastings · 11 years ago
  81. 071baa6 Argument Clinic: make 'destination' directive work. by Zachary Ware · 11 years ago
  82. 6657578 Improve fix for issue #20300. by Larry Hastings · 11 years ago
  83. c4fe092 Issue #20300: Fix exception when setting conversion class member "default" by Larry Hastings · 11 years ago
  84. b7ccb20 Issue #20294: Argument Clinic now supports argument parsing for __new__ and by Larry Hastings · 11 years ago
  85. b470575 Issue #20299: Argument Clinic custom converters may now change the default by Larry Hastings · 11 years ago
  86. 49776ef Use correct C type in byte_converter. by Serhiy Storchaka · 11 years ago
  87. 4903e00 Issue #20292: Small bug fix for Argument Clinic supporting format units by Larry Hastings · 11 years ago
  88. bebf735 Issue #20287: Argument Clinic's output is now configurable, allowing by Larry Hastings · 11 years ago
  89. 1abd708 Issue #20226: Added tests for new features and regressions. by Larry Hastings · 11 years ago
  90. 2a72791 Issue #20226: Major improvements to Argument Clinic. by Larry Hastings · 11 years ago
  91. 8f8ec92 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
  92. aabebde Closes #20235: Report file and line on unexpected exceptions in Argument Clinic. by Georg Brandl · 11 years ago
  93. 4a714d4 Issue #20268: Argument Clinic now supports cloning the parameters by Larry Hastings · 11 years ago
  94. d7fb791 Replace assert with a proper error by Antoine Pitrou · 11 years ago
  95. cc1d31e improve an error message in clinic by Antoine Pitrou · 11 years ago
  96. 8666e65 Issue #20228: Argument Clinic now has special support for class special methods. by Larry Hastings · 11 years ago
  97. 4a55fc5 Issue #20214: Fixed a number of small issues and documentation errors in by Larry Hastings · 11 years ago
  98. 583baa8 Issue #20196: Fixed a bug where Argument Clinic did not generate correct by Larry Hastings · 11 years ago
  99. 61272b7 Issue #19273: The marker comments Argument Clinic uses have been changed by Larry Hastings · 11 years ago
  100. 9026113 Issue #20157: When Argument Clinic renames a parameter because its name by Larry Hastings · 11 years ago