| Commit message (Expand) | Author | Age | Files | Lines |
* | Fixes for possible buffer overflows in sprintf() usages. | Marc-André Lemburg | 2001-11-28 | 4 | -17/+12 |
|
|
* | SF bug #483469: crash on unbounded recursion in __del__. | Tim Peters | 2001-11-27 | 1 | -0/+8 |
|
|
* | SF bug 485175: buffer overflow in traceback.c. | Tim Peters | 2001-11-27 | 1 | -3/+3 |
|
|
* | Fix for bug #480188: printing unicode objects | Marc-André Lemburg | 2001-11-20 | 1 | -3/+13 |
|
|
* | Since the MAGIC number scheme is going to break on January 1st, document | Tim Peters | 2001-11-18 | 1 | -4/+16 |
|
|
* | PyOS_getsig(), PyOS_setsig(): The minimal amount of work to avoid the | Barry Warsaw | 2001-11-13 | 1 | -0/+12 |
|
|
* | Use PyObject_CheckReadBuffer(). | Jeremy Hylton | 2001-11-09 | 2 | -17/+4 |
|
|
* | Include sys_getdefaultencoding in #ifdef Py_USING_UNICODE. Fixes #479571. | Martin v. Löwis | 2001-11-09 | 1 | -2/+2 |
|
|
* | Fix SF buf #480096: Assign to __debug__ still allowed | Jeremy Hylton | 2001-11-09 | 1 | -2/+7 |
|
|
* | Fix memory leak. This is part of SF patch #478006. | Fred Drake | 2001-11-09 | 1 | -1/+1 |
|
|
* | Backing out the fast path for interned string compares again as requested. | Marc-André Lemburg | 2001-11-08 | 1 | -15/+0 |
|
|
* | Add fast-path for comparing interned (true) string objects. | Marc-André Lemburg | 2001-11-07 | 1 | -0/+15 |
|
|
* | Make the CoreFoundation object _New and _Convert routines available to other ... | Jack Jansen | 2001-11-05 | 1 | -0/+22 |
|
|
* | SF patch 473749 compile under OS/2 VA C++, from Michael Muller. | Tim Peters | 2001-11-05 | 2 | -0/+5 |
|
|
* | Part of SF bug #478003 possible memory leaks in err handling. | Tim Peters | 2001-11-04 | 1 | -1/+4 |
|
|
* | Link the core with CoreServices, not with Carbon, and don't use any Carbon | Jack Jansen | 2001-10-31 | 1 | -0/+8 |
|
|
* | SF patch #474500: Make OS/2 locks work like posix locks, from Michael | Tim Peters | 2001-10-31 | 1 | -30/+61 |
|
|
* | On the macintosh don't take a quick exit in find_module() for frozen submodul... | Jack Jansen | 2001-10-30 | 1 | -0/+8 |
|
|
* | Rename "dictionary" (type and constructor) to "dict". | Tim Peters | 2001-10-29 | 1 | -1/+1 |
|
|
* | vgetargskeywords() | Tim Peters | 2001-10-27 | 1 | -16/+17 |
|
|
* | vgetargskeywords: Now that it's clear that nkwlist must equal max, and | Tim Peters | 2001-10-27 | 1 | -4/+3 |
|
|
* | vgetargskeywords: Prevent another potential sprintf buffer overrun. | Tim Peters | 2001-10-27 | 1 | -2/+2 |
|
|
* | vgetargskeywords: Verify kwlist has the required length while parsing | Tim Peters | 2001-10-27 | 1 | -20/+24 |
|
|
* | vgetargskeywords: Removed all PyErr_Clear() calls. It's possible that | Tim Peters | 2001-10-27 | 1 | -4/+8 |
|
|
* | vgetargskeywords: The keywords arg is a dict (if non-NULL), so use the | Tim Peters | 2001-10-27 | 1 | -5/+5 |
|
|
* | vgetargskeywords: Removed one of the mysterious PyErr_Clear() calls. | Tim Peters | 2001-10-27 | 1 | -10/+1 |
|
|
* | vgetargskeywords: | Tim Peters | 2001-10-27 | 1 | -16/+9 |
|
|
* | vgetargskeywords: | Tim Peters | 2001-10-27 | 1 | -20/+7 |
|
|
* | vgetargskeywords: | Tim Peters | 2001-10-27 | 1 | -12/+13 |
|
|
* | vgetargskeywords: | Tim Peters | 2001-10-27 | 1 | -15/+10 |
|
|
* | PyArg_ParseTupleAndKeywords: return false on internal error, not -1 (I | Tim Peters | 2001-10-27 | 1 | -30/+34 |
|
|
* | PyArg_ParseTupleAndKeywords: do basic sanity checks on the arguments, | Tim Peters | 2001-10-27 | 1 | -1/+16 |
|
|
* | tuple(3,4,5,x=2) dumped core on my box. vgetargskeywords() overindexed | Tim Peters | 2001-10-27 | 1 | -3/+13 |
|
|
* | vgetargskeywords(): remove test that can't succeed. Not a bugfix, just | Tim Peters | 2001-10-27 | 1 | -13/+7 |
|
|
* | Use PyDict_Copy() and PyDict_Update() instead of using PyObject_CallMethod() | Fred Drake | 2001-10-25 | 1 | -5/+3 |
|
|
* | Convert getrefcount() to METH_O, and sys_excepthook() to use | Fred Drake | 2001-10-24 | 1 | -6/+3 |
|
|
* | SF patch #474590 -- RISC OS support | Guido van Rossum | 2001-10-24 | 2 | -7/+46 |
|
|
* | PyArg_UnpackTuple(): New argument unpacking function suggested by Jim | Fred Drake | 2001-10-23 | 1 | -0/+60 |
|
|
* | Style conformance: function name begins a new line *consistently*. | Fred Drake | 2001-10-23 | 1 | -7/+11 |
|
|
* | Make traceback objects collectable. | Jeremy Hylton | 2001-10-22 | 1 | -2/+46 |
|
|
* | Removed two pointless and obfuscating macros. | Tim Peters | 2001-10-22 | 1 | -7/+4 |
|
|
* | SF patch #470393 (Jim Ahlstrom): Add missing marshal function | Guido van Rossum | 2001-10-19 | 1 | -0/+8 |
|
|
* | Move dlfcn.h block out of NetBSD block, assuming that NetBSD before | Martin v. Löwis | 2001-10-18 | 1 | -3/+4 |
|
|
* | SF Patch (but with no patch) 472555 Remove trailing common in enumeration. | Tim Peters | 2001-10-18 | 1 | -1/+1 |
|
|
* | Squash compiler wng about signed/unsigned mismatch. | Tim Peters | 2001-10-18 | 1 | -1/+1 |
|
|
* | First part of SF patch #416704: More robust freeze, by Toby Dickenson. | Guido van Rossum | 2001-10-18 | 1 | -5/+23 |
|
|
* | Fix the frozen bytecode for __hello__ (betcha didn't know that existed | Guido van Rossum | 2001-10-18 | 1 | -5/+12 |
|
|
* | Fix for SF bug [ #471928 ] global made w/nested list comprehensions | Jeremy Hylton | 2001-10-18 | 1 | -19/+51 |
|
|
* | Patch to bug #472202: Correctly recognize NetBSD before 199712. | Martin v. Löwis | 2001-10-18 | 1 | -2/+5 |
|
|
* | For debug build, check that the stack pointer never exceeds the stack size. | Jeremy Hylton | 2001-10-17 | 1 | -1/+3 |
|
|