summaryrefslogtreecommitdiff
path: root/Python/modsupport.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* do_mkvalue(), 'I' and 'k' cases: squash legitimateTim Peters2005-12-241-2/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-18/+18
* 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