COMMITS
/ Python/modsupport.c September 29, 2011
V
modsupport.c reuses Py_UNICODE_strlen()
Victor Stinner committed
July 14, 2011
V
Py_BuildValue("C") supports non-BMP characters on narrow build
Victor Stinner committed
August 11, 2010
A
Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99
Alexander Belopolsky committed
June 7, 2010
V
Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s#
Victor Stinner committed
May 9, 2010
A
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou committed
October 18, 2009
S
April 3, 2009
B
Py_BuildValue's 'c' code should use byte strings #5666
Benjamin Peterson committed
July 4, 2008
A
Correct a typo during previous checkin.
Amaury Forgeot d'Arc committed
A
Issue #3280: like chr() already does, the "%c" format now accepts the full unicode range
Amaury Forgeot d'Arc committed
June 11, 2008
M
Implement PEP 3121: new module initialization and finalization API.
Martin v. Löwis committed
May 26, 2008
C
Renamed PyString to PyBytes
Christian Heimes committed
January 19, 2008
G
Merged revisions 60080-60089,60091-60093 via svnmerge from
Georg Brandl committed
December 4, 2007
M
Eliminate outdated usages of PyInt_GetMax.
Martin v. Löwis committed
December 2, 2007
C
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h
Christian Heimes committed
November 6, 2007
G
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum committed
August 12, 2007
S
PyErr_Warn is deprecated in 2.5 - goes away for 3.0
Skip Montanaro committed
July 18, 2007
M
Change Py_BuildValue to generate Unicode objects for
Martin v. Löwis committed
July 1, 2007
W
Revert r56044 (which changed the %c format specifier to accept a
Walter Dörwald committed
June 20, 2007
W
Change %c format specifier for PyArg_ParseTuple() so that it accepts
Walter Dörwald committed
June 12, 2007
W
Make module docstrings unicode objects.
Walter Dörwald committed
June 10, 2007
M
Make identifiers str (not str8) objects throughout.
Martin v. Löwis committed
May 18, 2007
W
Add 'U'/'U#' format characters to Py_BuildValue (and thus
Walter Dörwald committed
May 4, 2007
W
Change UnicodeDecodeError objects so that the 'object' attribute
Walter Dörwald committed
May 3, 2007
G
Get rid of all #ifdef Py_USING_UNICODE (it is always present now).
Guido van Rossum 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 6, 2006
N
Try to cleanup the error handling a bit so there aren't false positives
Neal Norwitz committed
March 1, 2006
M
Fix more memory leaks. Will backport to 2.4.
Martin v. Löwis committed
February 16, 2006
M
Use Py_ssize_t to count the
Martin v. Löwis committed
February 15, 2006
M
Merge ssize_t branch.
Martin v. Löwis committed
December 24, 2005
T
do_mkvalue(), 'I' and 'k' cases: squash legitimate
Tim Peters committed
December 10, 2005
J
Add const to several API functions that take char *.
Jeremy Hylton committed
November 24, 2005
G
bug #1281408: make Py_BuildValue work with unsigned longs and long longs
Georg Brandl committed
November 20, 2005
N
Fix a few more memory leaks
Neal Norwitz committed
July 14, 2004
M
This is Pete Shinners' patch from his bug report
Michael W. Hudson committed
November 19, 2003
J
Getting rid of support for the ancient Apple MPW compiler.
Jack Jansen committed
October 24, 2003
M
Patch #828384: Don't discard nested exception in AddObject.
Martin v. Löwis committed
June 21, 2003
J
Better error message
Jeremy Hylton committed
April 17, 2003
J
dded missing k and K format specifiers to Py_BuildValue and friends.
Jack Jansen committed
March 29, 2003
M
Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.
Martin v. Löwis committed
January 31, 2003
J
Provide __module__ attributes for functions defined in C and Python.
Jeremy Hylton committed
January 30, 2003
F
Style consistency, so "grep ^function ..." works as expected.
Fred Drake committed
December 15, 2002
J
Fixed potential crash: v can be NULL here, so use Py_XDECREF rather than Py_DECREF
Just van Rossum committed
August 14, 2002
F
Py_InitModule4(): Accept NULL for the 'methods' argument. This makes
Fred Drake committed
July 28, 2002
M
Patch #554716: Use __va_copy where available.
Martin v. Löwis committed
June 17, 2002
F
PyModule_AddObject(): Added missing exceptions.
Fred Drake committed
March 28, 2002
F
Introduce two new flag bits that can be set in a PyMethodDef method
Fred Drake committed
August 17, 2001
M
Patch #445762: Support --disable-unicode
Martin v. Löwis committed
August 4, 2001
F
Plug a memory leak in Py_InitModule4(): when PyDict_SetItemString() failed,
Fred Drake committed
July 31, 2001
M
This patch turns the Python API mismatch notice into a standard
Marc-André Lemburg committed