summaryrefslogtreecommitdiff
path: root/Python/modsupport.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716)Serhiy Storchaka2017-03-301-0/+25
* bpo-29524: Add Objects/call.c file (#12)Victor Stinner2017-02-121-51/+0
* Backed out changeset f23fa1f7b68fVictor Stinner2017-02-101-0/+51
* Issue #29465: Add Objects/call.c fileVictor Stinner2017-02-101-51/+0
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-2/+1
* Add _Py_VaBuildStack() functionVictor Stinner2016-12-091-0/+98
* modsupport: replace int with Py_ssize_tVictor Stinner2016-12-091-8/+8
* modsupport: replace int with Py_ssize_tVictor Stinner2016-12-091-17/+20
* Uniformize argument names of "call" functionsVictor Stinner2016-12-061-4/+4
* Issue #28748: Private variable _Py_PackageContext is now of type "const char *"Serhiy Storchaka2016-11-211-1/+1
* Issue #19569: Compiler warnings are now emitted if use most of deprecatedSerhiy Storchaka2016-11-201-2/+2
* va_end() all va_copy()ed va_lists.Christian Heimes2016-09-211-5/+9
* replace usage of Py_VA_COPY with the (C99) standard va_copyBenjamin Peterson2016-09-201-1/+1
* replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-2/+2
* Avoid inefficient way to call functions without argumentVictor Stinner2016-09-051-1/+1
* require a long long data type (closes #27961)Benjamin Peterson2016-09-051-2/+1
* Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"Serhiy Storchaka2016-05-201-53/+70
|\
| * Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"Serhiy Storchaka2016-05-201-53/+70
* | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-2/+2
|/
* Issue #20024: Py_BuildValue() now saves/restores the current exception beforeVictor Stinner2014-01-211-1/+11
* modsupport.c reuses Py_UNICODE_strlen()Victor Stinner2011-09-291-10/+1
* Py_BuildValue("C") supports non-BMP characters on narrow buildVictor Stinner2011-07-151-5/+0
* Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99Alexander Belopolsky2010-08-111-9/+1
* Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s#Victor Stinner2010-06-071-33/+1
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-484/+484
* Issue 7147 - remove ability to attempt to build Python without complex number...Skip Montanaro2009-10-181-2/+0
* Py_BuildValue's 'c' code should use byte strings #5666Benjamin Peterson2009-04-031-1/+1
* Correct a typo during previous checkin.Amaury Forgeot d'Arc2008-07-041-1/+1
* Issue #3280: like chr() already does, the "%c" format now accepts the full un...Amaury Forgeot d'Arc2008-07-041-11/+2
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-92/+0
* Renamed PyString to PyBytesChristian Heimes2008-05-261-1/+1
* Merged revisions 60080-60089,60091-60093 via svnmerge fromGeorg Brandl2008-01-191-2/+14
* Eliminate outdated usages of PyInt_GetMax.Martin v. Löwis2007-12-041-8/+2
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-7/+7
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-1/+1
* PyErr_Warn is deprecated in 2.5 - goes away for 3.0Skip Montanaro2007-08-121-1/+1
* Change Py_BuildValue to generate Unicode objects forMartin v. Löwis2007-07-181-2/+2
* Revert r56044 (which changed the %c format specifier to accept aWalter Dörwald2007-07-011-0/+6
* Change %c format specifier for PyArg_ParseTuple() so that it acceptsWalter Dörwald2007-06-201-3/+16
* Make module docstrings unicode objects.Walter Dörwald2007-06-121-1/+1
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-2/+2
* Add 'U'/'U#' format characters to Py_BuildValue (and thusWalter Dörwald2007-05-181-0/+33
* Change UnicodeDecodeError objects so that the 'object' attributeWalter Dörwald2007-05-041-0/+33
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-4/+0
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-1/+1
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-33/+65
* Try to cleanup the error handling a bit so there aren't false positivesNeal Norwitz2006-03-061-8/+12
* Fix more memory leaks. Will backport to 2.4.Martin v. Löwis2006-03-011-1/+5
* Use Py_ssize_t to count theMartin v. Löwis2006-02-161-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+6