| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove useless argument of _PyUnicode_AsDefaultEncodedString() | Victor Stinner | 2011-03-02 | 1 | -1/+1 |
|
|
* | Issue #8914: fix various warnings from the Clang static analyzer v254. | Brett Cannon | 2011-02-22 | 1 | -3/+2 |
|
|
* | Issue #8992: convertsimple() doesn't need to fill msgbuf if an error occurred | Victor Stinner | 2011-01-04 | 1 | -38/+41 |
|
|
* | Issue #8992: Simplify addcleanup() API | Victor Stinner | 2011-01-04 | 1 | -13/+15 |
|
|
* | Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file | Victor Stinner | 2011-01-04 | 1 | -1/+11 |
|
|
* | handle dict subclasses gracefully in PyArg_ValidateKeywordArguments | Benjamin Peterson | 2010-11-17 | 1 | -1/+1 |
|
|
* | Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 | Alexander Belopolsky | 2010-08-11 | 1 | -36/+4 |
|
|
* | Issue #8991: convertbuffer() rejects discontigious buffers | Victor Stinner | 2010-07-28 | 1 | -21/+8 |
|
|
* | Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, use | Victor Stinner | 2010-06-25 | 1 | -47/+17 |
|
|
* | getbuffer(): release the buffer on error (if the buffer is not contiguous) | Victor Stinner | 2010-06-24 | 1 | -0/+1 |
|
|
* | PyArg_Parse*() functions: factorize code for s/z and u/Z formats | Victor Stinner | 2010-06-24 | 1 | -96/+25 |
|
|
* | Issue #8949: "z" format of PyArg_Parse*() functions doesn't accept bytes | Victor Stinner | 2010-06-24 | 1 | -5/+0 |
|
|
* | getargs.c: remove last reference to "t#" format | Victor Stinner | 2010-06-13 | 1 | -1/+0 |
|
|
* | Issue #8592: PyArg_Parse*() functions raise a TypeError for "y", "u" and "Z" | Victor Stinner | 2010-06-13 | 1 | -3/+17 |
|
|
* | Issue #8950: Make PyArg_Parse* with 'L' code raise for float inputs, | Mark Dickinson | 2010-06-10 | 1 | -17/+3 |
|
|
* | Issue #8838, #8339: Remove codecs.charbuffer_encode() and "t#" parsing format | Victor Stinner | 2010-06-08 | 1 | -40/+1 |
|
|
* | PyArg_Parse*("Z#") raises an error for unknown type | Victor Stinner | 2010-06-08 | 1 | -3/+4 |
|
|
* | convertsimple(): call PyErr_NoMemory() on PyMem_NEW() failure | Victor Stinner | 2010-06-06 | 1 | -0/+2 |
|
|
* | Simplify getbuffer(): convertbuffer() fails anyway if bf_getbuffer is NULL | Victor Stinner | 2010-06-06 | 1 | -19/+11 |
|
|
* | Remove dead code | Victor Stinner | 2010-05-29 | 1 | -12/+1 |
|
|
* | Issue #8837: Remove "O?" format of PyArg_Parse*() functions. The format is no | Victor Stinner | 2010-05-28 | 1 | -11/+0 |
|
|
* | Issue #6697: Fix a crash if a keyword contains a surrogate | Victor Stinner | 2010-05-19 | 1 | -6/+9 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -1656/+1656 |
|
|
* | prevent the dict constructor from accepting non-string keyword args #8419 | Benjamin Peterson | 2010-04-24 | 1 | -0/+15 |
|
|
* | Merged revisions 79837 via svnmerge from | Antoine Pitrou | 2010-04-06 | 1 | -10/+0 |
|
|
* | Merged revisions 77218 via svnmerge from | Mark Dickinson | 2010-01-01 | 1 | -1/+17 |
|
|
* | Issue #7414: Add missing 'case 'C'' to skipitem() in getargs.c. This | Mark Dickinson | 2009-12-03 | 1 | -0/+1 |
|
|
* | Issue 7147 - remove ability to attempt to build Python without complex number... | Skip Montanaro | 2009-10-18 | 1 | -4/+0 |
|
|
* | - Issue #6624: yArg_ParseTuple with "s" format when parsing argument with | Sean Reifscheider | 2009-08-01 | 1 | -1/+1 |
|
|
* | Issue #6012: Add cleanup support to O& argument parsing. | Martin v. Löwis | 2009-05-29 | 1 | -1/+47 |
|
|
* | add a replacement API for PyCObject, PyCapsule #5630 | Benjamin Peterson | 2009-05-05 | 1 | -8/+26 |
|
|
* | Merged revisions 70980,71059,71225,71234,71241,71243,71249,71251,71255,71266,... | Benjamin Peterson | 2009-04-11 | 1 | -1/+1 |
|
|
* | make 'c' only accept bytes and 'C' only unicode #5499 | Benjamin Peterson | 2009-04-02 | 1 | -10/+4 |
|
|
* | Merged revisions 67889-67892,67895,67898,67904-67907,67912,67918,67920-67921,... | Benjamin Peterson | 2008-12-27 | 1 | -1/+1 |
|
|
* | string -> bytes in error message #4745 | Benjamin Peterson | 2008-12-27 | 1 | -1/+1 |
|
|
* | #3668: When PyArg_ParseTuple correctly parses a s* format, but raises an | Antoine Pitrou | 2008-08-29 | 1 | -16/+47 |
|
|
* | Fix #3651 various memory leaks when using the buffer interface | Benjamin Peterson | 2008-08-27 | 1 | -10/+11 |
|
|
* | Merged revisions 66006 via svnmerge from | Neal Norwitz | 2008-08-24 | 1 | -3/+7 |
|
|
* | Merged revisions 65654 via svnmerge from | Martin v. Löwis | 2008-08-13 | 1 | -11/+108 |
|
|
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -1/+1 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -22/+22 |
|
|
* | Renamed PyBytes to PyByteArray | Christian Heimes | 2008-05-26 | 1 | -3/+3 |
|
|
* | #2895: don't crash with bytes as keyword argument names. | Georg Brandl | 2008-05-16 | 1 | -1/+1 |
|
|
* | #2798: PyArg_ParseTuple did not correctly handle the "s" code in case of unic... | Amaury Forgeot d'Arc | 2008-05-12 | 1 | -8/+8 |
|
|
* | Fixed a memory leak introduced in r62462 | Christian Heimes | 2008-05-08 | 1 | -1/+3 |
|
|
* | Issue 2440: remove the guard around the handling of case 'n' in getargs.c's c... | Trent Nelson | 2008-04-22 | 1 | -4/+1 |
|
|
* | Issue 2440: revert r62269 and r62279. These changes were made in an effort t... | Trent Nelson | 2008-04-11 | 1 | -2/+4 |
|
|
* | Issue 2440: fix the handling of %n in Python/getargs.c's convertsimple(), ext... | Trent Nelson | 2008-04-10 | 1 | -4/+2 |
|
|
* | Add XXX comments for whoever cleans up getargs.c :) | Georg Brandl | 2008-03-21 | 1 | -0/+4 |
|
|
* | Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,... | Christian Heimes | 2008-02-28 | 1 | -153/+108 |
|
|