| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Make module docstrings unicode objects. | Walter Dörwald | 2007-06-12 | 1 | -1/+1 |
|
|
* | Make identifiers str (not str8) objects throughout. | Martin v. Löwis | 2007-06-10 | 1 | -2/+2 |
|
|
* | Add 'U'/'U#' format characters to Py_BuildValue (and thus | Walter Dörwald | 2007-05-18 | 1 | -0/+33 |
|
|
* | Change UnicodeDecodeError objects so that the 'object' attribute | Walter Dörwald | 2007-05-04 | 1 | -0/+33 |
|
|
* | Get rid of all #ifdef Py_USING_UNICODE (it is always present now). | Guido van Rossum | 2007-05-03 | 1 | -4/+0 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -1/+1 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -33/+65 |
|
|
* | Try to cleanup the error handling a bit so there aren't false positives | Neal Norwitz | 2006-03-06 | 1 | -8/+12 |
|
|
* | Fix more memory leaks. Will backport to 2.4. | Martin v. Löwis | 2006-03-01 | 1 | -1/+5 |
|
|
* | Use Py_ssize_t to count the | Martin v. Löwis | 2006-02-16 | 1 | -1/+1 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -1/+6 |
|
|
* | do_mkvalue(), 'I' and 'k' cases: squash legitimate | Tim Peters | 2005-12-24 | 1 | -2/+2 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -18/+18 |
|
|
* | bug #1281408: make Py_BuildValue work with unsigned longs and long longs | Georg Brandl | 2005-11-24 | 1 | -3/+20 |
|
|
* | Fix a few more memory leaks | Neal Norwitz | 2005-11-20 | 1 | -0/+1 |
|
|
* | This is Pete Shinners' patch from his bug report | Michael W. Hudson | 2004-07-14 | 1 | -10/+30 |
|
|
* | Getting rid of support for the ancient Apple MPW compiler. | Jack Jansen | 2003-11-19 | 1 | -4/+0 |
|
|
* | Patch #828384: Don't discard nested exception in AddObject. | Martin v. Löwis | 2003-10-24 | 1 | -2/+3 |
|
|
* | Better error message | Jeremy Hylton | 2003-06-21 | 1 | -1/+7 |
|
|
* | dded missing k and K format specifiers to Py_BuildValue and friends. | Jack Jansen | 2003-04-17 | 1 | -0/+6 |
|
|
* | Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. | Martin v. Löwis | 2003-03-29 | 1 | -1/+1 |
|
|
* | Provide __module__ attributes for functions defined in C and Python. | Jeremy Hylton | 2003-01-31 | 1 | -2/+14 |
|
|
* | Style consistency, so "grep ^function ..." works as expected. | Fred Drake | 2003-01-30 | 1 | -2/+4 |
|
|
* | Fixed potential crash: v can be NULL here, so use Py_XDECREF rather than Py_D... | Just van Rossum | 2002-12-15 | 1 | -1/+1 |
|
|
* | Py_InitModule4(): Accept NULL for the 'methods' argument. This makes | Fred Drake | 2002-08-14 | 1 | -14/+16 |
|
|
* | Patch #554716: Use __va_copy where available. | Martin v. Löwis | 2002-07-28 | 1 | -0/+4 |
|
|
* | PyModule_AddObject(): Added missing exceptions. | Fred Drake | 2002-06-17 | 1 | -7/+14 |
|
|
* | Introduce two new flag bits that can be set in a PyMethodDef method | Fred Drake | 2002-03-28 | 1 | -0/+7 |
|
|
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 1 | -0/+4 |
|
|
* | Plug a memory leak in Py_InitModule4(): when PyDict_SetItemString() failed, | Fred Drake | 2001-08-04 | 1 | -2/+6 |
|
|
* | This patch turns the Python API mismatch notice into a standard | Marc-André Lemburg | 2001-07-31 | 1 | -5/+11 |
|
|
* | Py_BuildValue(): Add "D" conversion to create a Python complex value from | Fred Drake | 2001-03-12 | 1 | -0/+6 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -3/+0 |
|
|