summaryrefslogtreecommitdiff
path: root/Python/modsupport.c
Commit message (Expand)AuthorAgeFilesLines
...
* bug #1281408: make Py_BuildValue work with unsigned longs and long longsGeorg Brandl2005-11-241-3/+20
* Fix a few more memory leaksNeal Norwitz2005-11-201-0/+1
* This is Pete Shinners' patch from his bug reportMichael W. Hudson2004-07-141-10/+30
* Getting rid of support for the ancient Apple MPW compiler.Jack Jansen2003-11-191-4/+0
* Patch #828384: Don't discard nested exception in AddObject.Martin v. Löwis2003-10-241-2/+3
* Better error messageJeremy Hylton2003-06-211-1/+7
* dded missing k and K format specifiers to Py_BuildValue and friends.Jack Jansen2003-04-171-0/+6
* Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.Martin v. Löwis2003-03-291-1/+1
* Provide __module__ attributes for functions defined in C and Python.Jeremy Hylton2003-01-311-2/+14
* Style consistency, so "grep ^function ..." works as expected.Fred Drake2003-01-301-2/+4
* Fixed potential crash: v can be NULL here, so use Py_XDECREF rather than Py_D...Just van Rossum2002-12-151-1/+1
* Py_InitModule4(): Accept NULL for the 'methods' argument. This makesFred Drake2002-08-141-14/+16
* Patch #554716: Use __va_copy where available.Martin v. Löwis2002-07-281-0/+4
* PyModule_AddObject(): Added missing exceptions.Fred Drake2002-06-171-7/+14
* Introduce two new flag bits that can be set in a PyMethodDef methodFred Drake2002-03-281-0/+7
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-0/+4
* Plug a memory leak in Py_InitModule4(): when PyDict_SetItemString() failed,Fred Drake2001-08-041-2/+6
* This patch turns the Python API mismatch notice into a standardMarc-André Lemburg2001-07-311-5/+11
* Py_BuildValue(): Add "D" conversion to create a Python complex value fromFred Drake2001-03-121-0/+6
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-3/+0
* Andrew Kuchling <akuchlin@mems-exchange.org>:Fred Drake2000-09-231-0/+27
* Cast UCHAR_MAX to int before doing the comparison for overflow of theJack Jansen2000-09-151-0/+1
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Add a test that Py_IsInitialized() in Py_InitModule4(). SeeGuido van Rossum2000-08-041-0/+2
* Mass ANSIfication of function definitions. Doesn't cover all 'extern'Thomas Wouters2000-07-221-68/+8
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-6/+6
* Added support for H (unsigned short) specifier in PyArg_ParseTuple andJack Jansen2000-07-061-0/+3
* Include limits.h if we have it.Jack Jansen2000-07-031-0/+3
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick's Win64 changes: size_t vs. int or long; also some overflowGuido van Rossum2000-06-281-2/+9
* Brian Hooper <brian_takashi@hotmail.com>:Fred Drake2000-04-281-1/+31
* Change rare occurrences of #if HAVE_LONG_LONG to #ifdef.Guido van Rossum1999-01-251-1/+1
* Oops, forgot a pair of {}'s. (Greg Couch)Guido van Rossum1998-12-231-1/+2
* Add 'N' format character to Py_BuildValue -- like 'O' but doesn't INCREF.Guido van Rossum1998-12-231-1/+3
* Patch by Mark Hammond to support 64-bit ints on MS platforms.Guido van Rossum1998-08-251-1/+1
* # Fix strange type (methonname instead of methodname).Guido van Rossum1998-08-081-4/+4
* Changes for BeOS, QNX and long long, by Chris Herborth.Guido van Rossum1998-08-041-0/+5
* Two error messages still used the old name of the functio mkvalue() --Guido van Rossum1998-07-071-2/+2
* Plug memory leak in Py_BuildValue when using {...} to construct dictionaries.Guido van Rossum1997-11-201-3/+5
* Fix importing of shared libraries from inside packages.Guido van Rossum1997-11-191-0/+10
* Removed fatal errors from Py_Initmodule4() (and thus fromGuido van Rossum1997-08-021-12/+12
* Quickly renamed the remaining files -- this directory is done.Guido van Rossum1997-04-291-100/+106
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-13/+20
* Corrected format string in api_version_warning.Sjoerd Mullender1996-01-231-1/+1
* use PROTO macro around fn prototypeGuido van Rossum1995-03-091-1/+1
* support "O&" taking an object constructor a void*Guido van Rossum1995-01-201-2/+10
* rename method arg because of typedef conflictGuido van Rossum1995-01-171-4/+4
* api version checkingGuido van Rossum1995-01-091-14/+16
* New newmethodobject() interface takes struct methodlist pointerGuido van Rossum1995-01-071-15/+14