summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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
* More sprintf -> PyOS_snprintf.Tim Peters2001-11-281-2/+3
* Use PyOS_snprintf() at some cost even though it was correct before.Jeremy Hylton2001-11-281-6/+7
* Use PyOS_vsnprintf() and check its return value.Jeremy Hylton2001-11-281-2/+9
* ste_repr(): Conversion of sprintf() to PyOS_snprintf() for bufferBarry Warsaw2001-11-281-4/+5
* aix_loaderror(): Conversion of sprintf() to PyOS_snprintf() for bufferBarry Warsaw2001-11-281-1/+1
* code_repr(), com_addop_varname(), com_list_comprehension(),Barry Warsaw2001-11-281-32/+42
* Use PyOS_snprintf instead of sprintf.Jeremy Hylton2001-11-2812-35/+42
* Use PyOS_snprintf instead of sprintf.Jeremy Hylton2001-11-281-15/+18
* Use PyOS_snprintf when possible.Jeremy Hylton2001-11-281-34/+41
* Use PyOS_snprintf instead of sprintf.Jeremy Hylton2001-11-281-11/+11
* Fixes for possible buffer overflows in sprintf() usages.Marc-André Lemburg2001-11-284-17/+12
* SF bug #483469: crash on unbounded recursion in __del__.Tim Peters2001-11-271-0/+8
* SF bug 485175: buffer overflow in traceback.c.Tim Peters2001-11-271-3/+3
* Fix for bug #480188: printing unicode objectsMarc-André Lemburg2001-11-201-3/+13
* Since the MAGIC number scheme is going to break on January 1st, documentTim Peters2001-11-181-4/+16
* PyOS_getsig(), PyOS_setsig(): The minimal amount of work to avoid theBarry Warsaw2001-11-131-0/+12
* Use PyObject_CheckReadBuffer().Jeremy Hylton2001-11-092-17/+4
* Include sys_getdefaultencoding in #ifdef Py_USING_UNICODE. Fixes #479571.Martin v. Löwis2001-11-091-2/+2
* Fix SF buf #480096: Assign to __debug__ still allowedJeremy Hylton2001-11-091-2/+7
* Fix memory leak. This is part of SF patch #478006.Fred Drake2001-11-091-1/+1
* Backing out the fast path for interned string compares again as requested.Marc-André Lemburg2001-11-081-15/+0
* Add fast-path for comparing interned (true) string objects.Marc-André Lemburg2001-11-071-0/+15
* Make the CoreFoundation object _New and _Convert routines available to other ...Jack Jansen2001-11-051-0/+22
* SF patch 473749 compile under OS/2 VA C++, from Michael Muller.Tim Peters2001-11-052-0/+5
* Part of SF bug #478003 possible memory leaks in err handling.Tim Peters2001-11-041-1/+4
* Link the core with CoreServices, not with Carbon, and don't use any CarbonJack Jansen2001-10-311-0/+8
* SF patch #474500: Make OS/2 locks work like posix locks, from MichaelTim Peters2001-10-311-30/+61
* On the macintosh don't take a quick exit in find_module() for frozen submodul...Jack Jansen2001-10-301-0/+8
* Rename "dictionary" (type and constructor) to "dict".Tim Peters2001-10-291-1/+1
* 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
* Use PyDict_Copy() and PyDict_Update() instead of using PyObject_CallMethod()Fred Drake2001-10-251-5/+3
* Convert getrefcount() to METH_O, and sys_excepthook() to useFred Drake2001-10-241-6/+3
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-242-7/+46
* PyArg_UnpackTuple(): New argument unpacking function suggested by JimFred Drake2001-10-231-0/+60