summaryrefslogtreecommitdiffstats
path: root/Python/getargs.c
Commit message (Expand)AuthorAgeFilesLines
...
* PyArg_Parse*("Z#") raises an error for unknown typeVictor Stinner2010-06-081-3/+4
* convertsimple(): call PyErr_NoMemory() on PyMem_NEW() failureVictor Stinner2010-06-061-0/+2
* Simplify getbuffer(): convertbuffer() fails anyway if bf_getbuffer is NULLVictor Stinner2010-06-061-19/+11
* Remove dead codeVictor Stinner2010-05-291-12/+1
* Issue #8837: Remove "O?" format of PyArg_Parse*() functions. The format is noVictor Stinner2010-05-281-11/+0
* Issue #6697: Fix a crash if a keyword contains a surrogateVictor Stinner2010-05-191-6/+9
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1656/+1656
* prevent the dict constructor from accepting non-string keyword args #8419Benjamin Peterson2010-04-241-0/+15
* Merged revisions 79837 via svnmerge fromAntoine Pitrou2010-04-061-10/+0
* Merged revisions 77218 via svnmerge fromMark Dickinson2010-01-011-1/+17
* Issue #7414: Add missing 'case 'C'' to skipitem() in getargs.c. ThisMark Dickinson2009-12-031-0/+1
* Issue 7147 - remove ability to attempt to build Python without complex number...Skip Montanaro2009-10-181-4/+0
* - Issue #6624: yArg_ParseTuple with "s" format when parsing argument withSean Reifscheider2009-08-011-1/+1
* Issue #6012: Add cleanup support to O& argument parsing.Martin v. Löwis2009-05-291-1/+47
* add a replacement API for PyCObject, PyCapsule #5630Benjamin Peterson2009-05-051-8/+26
* Merged revisions 70980,71059,71225,71234,71241,71243,71249,71251,71255,71266,...Benjamin Peterson2009-04-111-1/+1
* make 'c' only accept bytes and 'C' only unicode #5499Benjamin Peterson2009-04-021-10/+4
* Merged revisions 67889-67892,67895,67898,67904-67907,67912,67918,67920-67921,...Benjamin Peterson2008-12-271-1/+1
* string -> bytes in error message #4745Benjamin Peterson2008-12-271-1/+1
* #3668: When PyArg_ParseTuple correctly parses a s* format, but raises anAntoine Pitrou2008-08-291-16/+47
* Fix #3651 various memory leaks when using the buffer interfaceBenjamin Peterson2008-08-271-10/+11
* Merged revisions 66006 via svnmerge fromNeal Norwitz2008-08-241-3/+7
* Merged revisions 65654 via svnmerge fromMartin v. Löwis2008-08-131-11/+108
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* Renamed PyString to PyBytesChristian Heimes2008-05-261-22/+22
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-3/+3
* #2895: don't crash with bytes as keyword argument names.Georg Brandl2008-05-161-1/+1
* #2798: PyArg_ParseTuple did not correctly handle the "s" code in case of unic...Amaury Forgeot d'Arc2008-05-121-8/+8
* Fixed a memory leak introduced in r62462Christian Heimes2008-05-081-1/+3
* Issue 2440: remove the guard around the handling of case 'n' in getargs.c's c...Trent Nelson2008-04-221-4/+1
* Issue 2440: revert r62269 and r62279. These changes were made in an effort t...Trent Nelson2008-04-111-2/+4
* Issue 2440: fix the handling of %n in Python/getargs.c's convertsimple(), ext...Trent Nelson2008-04-101-4/+2
* Add XXX comments for whoever cleans up getargs.c :)Georg Brandl2008-03-211-0/+4
* Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,...Christian Heimes2008-02-281-153/+108
* Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61064,...Christian Heimes2008-02-261-6/+6
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-8/+8
* Merged revisions 59239-59244 via svnmerge fromChristian Heimes2007-11-301-2/+2
* PyString_AsString is permissive and accepts unicode strings.Amaury Forgeot d'Arc2007-11-221-4/+4
* Fix error messages for buffer objects to say "bytes" instead of "string".Guido van Rossum2007-11-211-2/+2
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-183/+158
* #1316: remove redundant PyLong_Check calls when PyInt_Check was already called.Georg Brandl2007-10-231-3/+1
* Remove the buffer API from PyUnicode as specified by PEP 3137. Also,Alexandre Vassalotti2007-10-141-1/+1
* Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i...Travis E. Oliphant2007-10-131-2/+4
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-231-3/+3
* Ugh, hopefully I can get this right. The code is only compiled on Win64Neal Norwitz2007-08-311-1/+1
* Try to fix the problem of passing a non-int on Win64 right this time.Neal Norwitz2007-08-311-2/+5
* Try to fix a problem with large values on Win64. Diagnosed by Thomas HellerNeal Norwitz2007-08-311-1/+1
* Three patches from issue #1047, by Amaury Forgeot d'Arc:Guido van Rossum2007-08-291-0/+28
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-18/+37
* Revert r56044 (which changed the %c format specifier to accept aWalter Dörwald2007-07-011-0/+13