GitWeb
Get Gentoo!
gentoo.org sites
gentoo.org
Wiki
Bugs
Forums
Packages
Planet
Archives
Sources
Infra Status
Home
Gentoo Repository
Repositories
Projects
Developer Overlays
User Overlays
Data
Websites
index
:
fork/cpython.git
3.6
3.7
3.8
3.9
backport-e35ca41-3.11
gentoo
gentoo-2.7-vanilla
main
master
Gentoo fork of Python
Python project <python@gentoo.org>
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Include
/
modsupport.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-28411: Isolate PyInterpreterState.modules (#3575)
Eric Snow
2017-09-14
1
-0
/
+4
*
bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)
Eric Snow
2017-09-13
1
-4
/
+0
*
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
Eric Snow
2017-09-04
1
-0
/
+4
*
Remove _PyArg_NoStackKeywords(). (#2641)
Serhiy Storchaka
2017-07-10
1
-3
/
+0
*
Issue #29460: _PyArg_NoKeywords(), _PyArg_NoStackKeywords() and
Serhiy Storchaka
2017-02-06
1
-0
/
+7
*
Issue #29083: Fixed the declaration of some public API functions.
Serhiy Storchaka
2017-01-24
1
-7
/
+5
|
\
|
*
Issue #29083: Fixed the declaration of some public API functions.
Serhiy Storchaka
2017-01-24
1
-7
/
+5
|
|
\
|
|
*
Issue #29083: Fixed the declaration of some public API functions.
Serhiy Storchaka
2017-01-24
1
-5
/
+5
*
|
|
Add _PyArg_UnpackStack() function helper
Victor Stinner
2017-01-17
1
-0
/
+10
*
|
|
Add _PyArg_NoStackKeywords() helper function
Victor Stinner
2017-01-17
1
-1
/
+2
*
|
|
Add _PyArg_ParseStack() helper function
Victor Stinner
2017-01-17
1
-3
/
+13
*
|
|
Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords
Victor Stinner
2017-01-17
1
-2
/
+2
*
|
|
Issue #28915: Exclude _Py_VaBuildStack from the limited API.
Serhiy Storchaka
2016-12-27
1
-0
/
+4
*
|
|
Add _Py_VaBuildStack() function
Victor Stinner
2016-12-09
1
-0
/
+13
*
|
|
Issue #28748: Private variable _Py_PackageContext is now of type "const char *"
Serhiy Storchaka
2016-11-21
1
-1
/
+1
|
/
/
*
|
Issue #26900: Excluded underscored names and other private API from limited API.
Serhiy Storchaka
2016-09-11
1
-0
/
+4
*
|
Emit METH_FASTCALL code in Argument Clinic
Victor Stinner
2016-09-09
1
-0
/
+3
*
|
Issue #27574: Decreased an overhead of parsing keyword arguments in functions
Serhiy Storchaka
2016-08-14
1
-0
/
+23
|
/
*
Issue 24365: Conditionalize PEP 489 additions to the stable ABI
Yury Selivanov
2015-06-02
1
-1
/
+8
*
PEP 489: Multi-phase extension module initialization
Nick Coghlan
2015-05-23
1
-23
/
+39
*
Issue #20294: Argument Clinic now supports argument parsing for __new__ and
Larry Hastings
2014-01-18
1
-0
/
+1
*
remove support GCC PyArg_ParseTuple format patch, last seen in 2006
Benjamin Peterson
2013-05-12
1
-1
/
+1
*
Issue #11626: Add _SizeT functions to stable ABI.
Martin v. Löwis
2012-06-24
1
-1
/
+4
*
Merge branches/pep-0384.
Martin v. Löwis
2010-12-03
1
-0
/
+15
*
prevent the dict constructor from accepting non-string keyword args #8419
Benjamin Peterson
2010-04-24
1
-0
/
+1
*
#5735: Modules compiled with incompatible settings (--with-pydebug when pytho...
Amaury Forgeot d'Arc
2009-06-01
1
-2
/
+2
*
Issue #6012: Add cleanup support to O& argument parsing.
Martin v. Löwis
2009-05-29
1
-0
/
+2
*
Implement PEP 3121: new module initialization and finalization API.
Martin v. Löwis
2008-06-11
1
-30
/
+6
*
Merged revisions 60176-60209 via svnmerge from
Christian Heimes
2008-01-23
1
-1
/
+2
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
1
-1
/
+1
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-2
/
+5
*
Use Py_ssize_t for PyArg_UnpackTuple arguments.
Martin v. Löwis
2006-03-01
1
-1
/
+1
*
Martin owns PEP 353 and did most of the work
Neal Norwitz
2006-02-28
1
-1
/
+1
*
from __future__ import with_statement addon for 'with', mostly written by
Thomas Wouters
2006-02-28
1
-2
/
+4
*
Revert backwards-incompatible const changes.
Martin v. Löwis
2006-02-27
1
-2
/
+2
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-4
/
+28
*
Add const to several API functions that take char *.
Jeremy Hylton
2005-12-10
1
-15
/
+15
*
Disallow keyword arguments for type constructors that don't use them.
Georg Brandl
2005-08-26
1
-0
/
+1
*
Add PyArg_VaParseTupleAndKeywords(). Document this function and
Brett Cannon
2004-07-10
1
-0
/
+2
*
SF patch 576101, by Oren Tirosh: alternative implementation of
Guido van Rossum
2002-08-19
1
-2
/
+5
*
Excise DL_EXPORT from Include.
Mark Hammond
2002-08-12
1
-12
/
+12
*
PyArg_UnpackTuple(): New argument unpacking function suggested by Jim
Fred Drake
2001-10-23
1
-0
/
+1
*
Merge of descr-branch back into trunk.
Tim Peters
2001-08-02
1
-2
/
+4
*
The addition of new parameters to functions in the Python/C API requires
Fred Drake
2001-01-25
1
-2
/
+5
*
Andrew Kuchling <akuchlin@mems-exchange.org>:
Fred Drake
2000-09-23
1
-0
/
+4
*
REMOVED all CWI, CNRI and BeOpen copyright markings.
Guido van Rossum
2000-09-01
1
-9
/
+0
*
ANSIfications: fix empty arglists, and remove the checks for
Thomas Wouters
2000-07-22
1
-13
/
+0
*
Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either
Thomas Wouters
2000-07-16
1
-1
/
+1
*
ANSI-fication of the sources -- remove Py_PROTO!
Fred Drake
2000-07-08
1
-15
/
+17
*
Change copyright notice - 2nd try.
Guido van Rossum
2000-06-30
1
-6
/
+0
[next]