summaryrefslogtreecommitdiffstats
path: root/Python/getargs.c
Commit message (Expand)AuthorAgeFilesLines
* Wrap uargs declaration in a #ifdef Py_USING_UNICODE, so thatWalter Dörwald2002-11-211-0/+2
* Patch #554716: Use __va_copy where available.Martin v. Löwis2002-07-281-0/+4
* Fix by Greg Chapman from SF bug 534347: Potential AV in vgetargskeywords.Guido van Rossum2002-04-041-1/+7
* Fixed "u#" parser marker to pass through Unicode objects as-is withoutMarc-André Lemburg2002-01-091-2/+6
* mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, toTim Peters2001-12-031-3/+3
* SF bug 486278 SystemError: Python/getargs.c:1086: bad.Tim Peters2001-11-291-7/+10
* Two screwups fixed for sizeof(char *) instead of sizeof(char []).Jeremy Hylton2001-11-281-77/+82
* Use PyOS_snprintf() at some cost even though it was correct before.Jeremy Hylton2001-11-281-6/+7
* Use PyOS_snprintf when possible.Jeremy Hylton2001-11-281-34/+41
* Fixes for possible buffer overflows in sprintf() usages.Marc-André Lemburg2001-11-281-14/+9
* vgetargskeywords()Tim Peters2001-10-271-16/+17
* vgetargskeywords: Now that it's clear that nkwlist must equal max, andTim Peters2001-10-271-4/+3
* vgetargskeywords: Prevent another potential sprintf buffer overrun.Tim Peters2001-10-271-2/+2
* vgetargskeywords: Verify kwlist has the required length while parsingTim Peters2001-10-271-20/+24
* vgetargskeywords: Removed all PyErr_Clear() calls. It's possible thatTim Peters2001-10-271-4/+8
* vgetargskeywords: The keywords arg is a dict (if non-NULL), so use theTim Peters2001-10-271-5/+5
* vgetargskeywords: Removed one of the mysterious PyErr_Clear() calls.Tim Peters2001-10-271-10/+1
* vgetargskeywords:Tim Peters2001-10-271-16/+9
* vgetargskeywords:Tim Peters2001-10-271-20/+7
* vgetargskeywords:Tim Peters2001-10-271-12/+13
* vgetargskeywords:Tim Peters2001-10-271-15/+10
* PyArg_ParseTupleAndKeywords: return false on internal error, not -1 (ITim Peters2001-10-271-30/+34
* PyArg_ParseTupleAndKeywords: do basic sanity checks on the arguments,Tim Peters2001-10-271-1/+16
* tuple(3,4,5,x=2) dumped core on my box. vgetargskeywords() overindexedTim Peters2001-10-271-3/+13
* vgetargskeywords(): remove test that can't succeed. Not a bugfix, justTim Peters2001-10-271-13/+7
* PyArg_UnpackTuple(): New argument unpacking function suggested by JimFred Drake2001-10-231-0/+60
* Style conformance: function name begins a new line *consistently*.Fred Drake2001-10-231-7/+11
* Undo part of 2.59: 't' case of convertsimple() should not use convertbuffer().Jeremy Hylton2001-10-111-5/+11
* One more place where PyString_AsString() was used after aJeremy Hylton2001-10-101-1/+1
* Use AS_STRING() following the check and avoid an extra call.Jeremy Hylton2001-10-101-1/+1
* Fix core dump in PyArg_ParseTuple() with Unicode arguments.Jeremy Hylton2001-09-101-15/+17
* The "O!" format code should implement an isinstance() testGuido van Rossum2001-08-281-1/+1
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-1/+21
* Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h.Jeremy Hylton2001-07-301-5/+0
* Change cascaded if stmts to switch stmt in vgetargs1().Jeremy Hylton2001-05-291-19/+25
* Internal refactoring of convertsimple() and friends.Jeremy Hylton2001-05-291-515/+514
* Fix whitespace botch.Fred Drake2001-05-181-1/+1
* vgetargs1() and vgetargskeywords(): Replace uses of PyTuple_Size() andJeremy Hylton2001-05-181-10/+8
* Add support for Windows using "mbcs" as the default Unicode encoding when dea...Mark Hammond2001-05-131-1/+1
* Added new parser markers 'et' and 'et#' which do not recode stringMarc-André Lemburg2001-05-021-4/+20
* Related to SF bug 132008 (PyList_Reverse blows up).Tim Peters2001-02-121-0/+2
* Better error message when non-dictionary received for **kwargJeremy Hylton2001-01-251-2/+7
* This patch makes sure that the function name always appears in the errorKa-Ping Yee2001-01-151-26/+35
* vgetargskeywords(): Patch for memory leak identified in bug #119862.Barry Warsaw2000-12-111-0/+1
* Clarified some of the error messages, esp. "read-only characterGuido van Rossum2000-12-011-17/+16
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-3/+0
* Special case the "s#" PyArg_Parse() token for Unicode objects:Marc-André Lemburg2000-09-211-26/+53
* Added B format char to Py_BuildValue (same as b,h,i, but makesJack Jansen2000-09-151-1/+1
* This patch hopefully fixes the problem with "es#" and "es" inMarc-André Lemburg2000-09-081-0/+2
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0