COMMITS
/ Include/modsupport.h November 4, 2020
V
bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122)
Victor Stinner committed
March 22, 2020
D
bpo-40024: Add PyModule_AddType() helper function (GH-19088)
Dong-hee Na committed
March 16, 2020
D
bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980)
Dong-hee Na committed
August 29, 2019
March 14, 2019
S
bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-12058)
Serhiy Storchaka committed
January 11, 2019
S
bpo-35582: Argument Clinic: inline parsing code for positional parameters. (GH-11313)
Serhiy Storchaka committed
December 25, 2018
S
bpo-23867: Argument Clinic: inline parsing code for a single positional parameter. (GH-9689)
Serhiy Storchaka committed
December 15, 2017
S
bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746)
Serhiy Storchaka committed
September 14, 2017
E
bpo-28411: Isolate PyInterpreterState.modules (#3575)
Eric Snow committed
E
bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)
Eric Snow committed
September 4, 2017
E
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
Eric Snow committed
July 10, 2017
S
Remove _PyArg_NoStackKeywords(). (#2641)
Serhiy Storchaka committed
February 6, 2017
S
Issue #29460: _PyArg_NoKeywords(), _PyArg_NoStackKeywords() and
Serhiy Storchaka committed
January 24, 2017
S
Issue #29083: Fixed the declaration of some public API functions.
Serhiy Storchaka committed
S
Issue #29083: Fixed the declaration of some public API functions.
Serhiy Storchaka committed
S
Issue #29083: Fixed the declaration of some public API functions.
Serhiy Storchaka committed
January 17, 2017
V
Add _PyArg_UnpackStack() function helper
Victor Stinner committed
V
Add _PyArg_NoStackKeywords() helper function
Victor Stinner committed
V
Add _PyArg_ParseStack() helper function
Victor Stinner committed
V
Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords
Victor Stinner committed
December 27, 2016
S
Issue #28915: Exclude _Py_VaBuildStack from the limited API.
Serhiy Storchaka committed
December 8, 2016
V
Add _Py_VaBuildStack() function
Victor Stinner committed
November 21, 2016
S
Issue #28748: Private variable _Py_PackageContext is now of type "const char *"
Serhiy Storchaka committed
September 11, 2016
S
Issue #26900: Excluded underscored names and other private API from limited API.
Serhiy Storchaka committed
September 10, 2016
V
Emit METH_FASTCALL code in Argument Clinic
Victor Stinner committed
August 14, 2016
S
Issue #27574: Decreased an overhead of parsing keyword arguments in functions
Serhiy Storchaka committed
June 2, 2015
Y
Issue 24365: Conditionalize PEP 489 additions to the stable ABI
Yury Selivanov committed
May 23, 2015
N
PEP 489: Multi-phase extension module initialization
Nick Coghlan committed
January 19, 2014
L
Issue #20294: Argument Clinic now supports argument parsing for __new__ and
Larry Hastings committed
May 13, 2013
B
remove support GCC PyArg_ParseTuple format patch, last seen in 2006
Benjamin Peterson committed
June 23, 2012
M
Issue #11626: Add _SizeT functions to stable ABI.
Martin v. Löwis committed
December 3, 2010
M
Merge branches/pep-0384.
Martin v. Löwis committed
April 24, 2010
B
prevent the dict constructor from accepting non-string keyword args #8419
Benjamin Peterson committed
June 1, 2009
A
#5735: Modules compiled with incompatible settings (--with-pydebug when python is not)
Amaury Forgeot d'Arc committed
May 29, 2009
M
Issue #6012: Add cleanup support to O& argument parsing.
Martin v. Löwis committed
June 11, 2008
M
Implement PEP 3121: new module initialization and finalization API.
Martin v. Löwis committed
January 23, 2008
C
Merged revisions 60176-60209 via svnmerge from
Christian Heimes committed
December 13, 2006
T
Four months of trunk changes (including a few releases...)
Thomas Wouters committed
April 21, 2006
T
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters committed
March 1, 2006
M
Use Py_ssize_t for PyArg_UnpackTuple arguments.
Martin v. Löwis committed
February 28, 2006
N
Martin owns PEP 353 and did most of the work
Neal Norwitz committed
T
from __future__ import with_statement addon for 'with', mostly written by
Thomas Wouters committed
February 27, 2006
M
Revert backwards-incompatible const changes.
Martin v. Löwis committed
February 15, 2006
M
Merge ssize_t branch.
Martin v. Löwis committed
December 10, 2005
J
Add const to several API functions that take char *.
Jeremy Hylton committed
August 26, 2005
G
Disallow keyword arguments for type constructors that don't use them.
Georg Brandl committed
July 10, 2004
B
Add PyArg_VaParseTupleAndKeywords(). Document this function and
Brett Cannon committed
August 19, 2002
G
SF patch 576101, by Oren Tirosh: alternative implementation of
Guido van Rossum committed
August 12, 2002
M
Excise DL_EXPORT from Include.
Mark Hammond committed
October 23, 2001
F
PyArg_UnpackTuple(): New argument unpacking function suggested by Jim
Fred Drake committed