index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
modsupport.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-94673: Ensure Builtin Static Types are Readied Properly (gh-103940)
Eric Snow
2023-04-27
1
-1/+2
*
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...
Irit Katriel
2023-02-28
1
-9/+5
*
gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)
Eric Snow
2022-11-16
1
-3/+0
*
gh-99300: Use Py_NewRef() in Python/ directory (#99302)
Victor Stinner
2022-11-10
1
-6/+3
*
bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122)
Victor Stinner
2020-11-04
1
-31/+39
*
closes bpo-41533: Fix a potential memory leak when allocating a stack (GH-21847)
Tony Solomonik
2020-08-30
1
-0/+3
*
bpo-40943: PY_SSIZE_T_CLEAN required for '#' formats (GH-20784)
Victor Stinner
2020-06-19
1
-15/+18
*
bpo-40170: Add _PyIndex_Check() internal function (GH-19426)
Victor Stinner
2020-04-08
1
-1/+2
*
bpo-40024: Add PyModule_AddType() helper function (GH-19088)
Dong-hee Na
2020-03-22
1
-0/+19
*
bpo-38913: Fix segfault in Py_BuildValue("(s#O)", ...) if entered with except...
Serhiy Storchaka
2020-03-02
1
-3/+3
*
bpo-36381: warn when no PY_SSIZE_T_CLEAN defined (GH-12473)
Inada Naoki
2019-03-23
1
-3/+18
*
bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716)
Serhiy Storchaka
2017-03-30
1
-0/+25
*
bpo-29524: Add Objects/call.c file (#12)
Victor Stinner
2017-02-12
1
-51/+0
*
Backed out changeset f23fa1f7b68f
Victor Stinner
2017-02-10
1
-0/+51
*
Issue #29465: Add Objects/call.c file
Victor Stinner
2017-02-10
1
-51/+0
*
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-2/+1
*
Add _Py_VaBuildStack() function
Victor Stinner
2016-12-08
1
-0/+98
*
modsupport: replace int with Py_ssize_t
Victor Stinner
2016-12-08
1
-8/+8
*
modsupport: replace int with Py_ssize_t
Victor Stinner
2016-12-08
1
-17/+20
*
Uniformize argument names of "call" functions
Victor Stinner
2016-12-06
1
-4/+4
*
Issue #28748: Private variable _Py_PackageContext is now of type "const char *"
Serhiy Storchaka
2016-11-21
1
-1/+1
*
Issue #19569: Compiler warnings are now emitted if use most of deprecated
Serhiy Storchaka
2016-11-20
1
-2/+2
*
va_end() all va_copy()ed va_lists.
Christian Heimes
2016-09-21
1
-5/+9
*
replace usage of Py_VA_COPY with the (C99) standard va_copy
Benjamin Peterson
2016-09-21
1
-1/+1
*
replace PY_LONG_LONG with long long
Benjamin Peterson
2016-09-06
1
-2/+2
*
Avoid inefficient way to call functions without argument
Victor Stinner
2016-09-06
1
-1/+1
*
require a long long data type (closes #27961)
Benjamin Peterson
2016-09-06
1
-2/+1
*
Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"
Serhiy Storchaka
2016-05-20
1
-53/+70
|
\
|
*
Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"
Serhiy Storchaka
2016-05-20
1
-53/+70
*
|
Issue #25923: Added more const qualifiers to signatures of static and private...
Serhiy Storchaka
2015-12-25
1
-2/+2
|
/
*
Issue #20024: Py_BuildValue() now saves/restores the current exception before
Victor Stinner
2014-01-21
1
-1/+11
*
modsupport.c reuses Py_UNICODE_strlen()
Victor Stinner
2011-09-29
1
-10/+1
*
Py_BuildValue("C") supports non-BMP characters on narrow build
Victor Stinner
2011-07-14
1
-5/+0
*
Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99
Alexander Belopolsky
2010-08-11
1
-9/+1
*
Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s#
Victor Stinner
2010-06-07
1
-33/+1
*
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou
2010-05-09
1
-484/+484
*
Issue 7147 - remove ability to attempt to build Python without complex number...
Skip Montanaro
2009-10-18
1
-2/+0
*
Py_BuildValue's 'c' code should use byte strings #5666
Benjamin Peterson
2009-04-03
1
-1/+1
*
Correct a typo during previous checkin.
Amaury Forgeot d'Arc
2008-07-04
1
-1/+1
*
Issue #3280: like chr() already does, the "%c" format now accepts the full un...
Amaury Forgeot d'Arc
2008-07-04
1
-11/+2
*
Implement PEP 3121: new module initialization and finalization API.
Martin v. Löwis
2008-06-11
1
-92/+0
*
Renamed PyString to PyBytes
Christian Heimes
2008-05-26
1
-1/+1
*
Merged revisions 60080-60089,60091-60093 via svnmerge from
Georg Brandl
2008-01-19
1
-2/+14
*
Eliminate outdated usages of PyInt_GetMax.
Martin v. Löwis
2007-12-04
1
-8/+2
*
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...
Christian Heimes
2007-12-02
1
-7/+7
*
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum
2007-11-06
1
-1/+1
*
PyErr_Warn is deprecated in 2.5 - goes away for 3.0
Skip Montanaro
2007-08-12
1
-1/+1
*
Change Py_BuildValue to generate Unicode objects for
Martin v. Löwis
2007-07-18
1
-2/+2
*
Revert r56044 (which changed the %c format specifier to accept a
Walter Dörwald
2007-07-01
1
-0/+6
*
Change %c format specifier for PyArg_ParseTuple() so that it accepts
Walter Dörwald
2007-06-20
1
-3/+16
[next]