| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove MALLOC_ZERO_RETURNS_NULL. | Martin v. Löwis | 2002-11-23 | 1 | -9/+4 |
|
|
* | Fix for #641455: curses module doesn't build on MacOSX. It turns out the | Jack Jansen | 2002-11-22 | 1 | -0/+9 |
|
|
* | Fix PEP 293 related problems with --disable-unicode builds | Walter Dörwald | 2002-11-21 | 1 | -0/+3 |
|
|
* | Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes | Neil Schemenauer | 2002-11-17 | 1 | -1/+0 |
|
|
* | Assorted patches from Armin Rigo: | Michael W. Hudson | 2002-11-08 | 1 | -0/+5 |
|
|
* | Patch #512981: Update readline input stream on sys.stdin/out change. | Martin v. Löwis | 2002-10-26 | 1 | -2/+2 |
|
|
* | Clean up some whitespace to be consistent with Python's C style. | Fred Drake | 2002-10-17 | 1 | -4/+4 |
|
|
* | Add PyStructSequence_UnnamedField. Add stat_float_times. | Martin v. Löwis | 2002-10-16 | 1 | -0/+2 |
|
|
* | SF # 607253, header file problems by Ralf W. Grosse-Kunstleve | Neal Norwitz | 2002-10-04 | 2 | -6/+6 |
|
|
* | Patch 594001: PEP 277 - Unicode file name support for Windows NT. | Mark Hammond | 2002-10-03 | 1 | -2/+23 |
|
|
* | Back out the previous change. It doesn't save any space on 64-bit | Guido van Rossum | 2002-09-17 | 1 | -2/+2 |
|
|
* | Rearrange the members of struct _node to put shorter fields towards | Guido van Rossum | 2002-09-17 | 1 | -2/+2 |
|
|
* | Use Py_GCC_ATTRIBUTE instead of __attribute__. Compilers other than GCC | Neil Schemenauer | 2002-09-15 | 5 | -10/+12 |
|
|
* | A slight change to SET_LINENO-less tracing. | Michael W. Hudson | 2002-09-11 | 1 | -0/+2 |
|
|
* | Added include guards and C++ extern "C" {} constructs. Partial fix for #607253. | Jack Jansen | 2002-09-10 | 1 | -1/+3 |
|
|
* | replace thread state objects' ticker and checkinterval fields with two | Skip Montanaro | 2002-09-03 | 2 | -2/+4 |
|
|
* | Removed bogus PyUnicodeTranslateError_GetEncoding, as | Walter Dörwald | 2002-09-02 | 1 | -1/+0 |
|
|
* | PEP 293 implemention (from SF patch http://www.python.org/sf/432401) | Walter Dörwald | 2002-09-02 | 2 | -0/+96 |
|
|
* | Further SET_LINENO reomval fixes. See comments in patch #587933. | Michael W. Hudson | 2002-08-30 | 1 | -3/+0 |
|
|
* | SF patch 576101, by Oren Tirosh: alternative implementation of | Guido van Rossum | 2002-08-19 | 2 | -4/+15 |
|
|
* | Make PyDescr_IsData() a macro. It's too simple to be a function. | Guido van Rossum | 2002-08-19 | 1 | -1/+1 |
|
|
* | This is my patch | Michael W. Hudson | 2002-08-15 | 1 | -2/+3 |
|
|
* | provide less mysterious error messages when seeing end-of-line in | Skip Montanaro | 2002-08-15 | 1 | -0/+2 |
|
|
* | Added a FutureWarning for constructs that will change semantically in | Barry Warsaw | 2002-08-14 | 1 | -0/+1 |
|
|
* | Patch #505705: Remove eval in pickle and cPickle. | Martin v. Löwis | 2002-08-14 | 1 | -0/+4 |
|
|
* | Correct PyAPI_FUNC to PyAPI_DATA - sorry Jack. | Mark Hammond | 2002-08-12 | 1 | -2/+2 |
|
|
* | Add name mangling for new PyUnicode_FromOrdinal() and fix declaration | Marc-André Lemburg | 2002-08-12 | 1 | -1/+3 |
|
|
* | Excise DL_EXPORT from Include. | Mark Hammond | 2002-08-12 | 51 | -673/+669 |
|
|
* | Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. | Marc-André Lemburg | 2002-08-11 | 1 | -0/+12 |
|
|
* | A modest speedup of object deallocation. call_finalizer() did rather | Guido van Rossum | 2002-08-08 | 1 | -0/+1 |
|
|
* | Added info about the right way to leave the body of a trashcan-protected | Tim Peters | 2002-08-07 | 1 | -0/+5 |
|
|
* | SF patch 580331 by Oren Tirosh: make file objects their own iterator. | Guido van Rossum | 2002-08-06 | 1 | -3/+6 |
|
|
* | Remove function definition from cStringIO.h. | Jeremy Hylton | 2002-08-05 | 1 | -23/+4 |
|
|
* | Patch #534304: Implement phase 1 of PEP 263. | Martin v. Löwis | 2002-08-04 | 2 | -0/+2 |
|
|
* | Added one call to Py_Main(), for OSX framework builds only, that will get the | Jack Jansen | 2002-08-02 | 1 | -1/+3 |
|
|
* | Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype | Mark Hammond | 2002-08-02 | 1 | -0/+3 |
|
|
* | New functions for extension writers on Windows: | Thomas Heller | 2002-07-29 | 1 | -0/+3 |
|
|
* | Excise DL_IMPORT/EXPORT from object.h, and related files. This patch | Mark Hammond | 2002-07-29 | 5 | -93/+93 |
|
|
* | Define _XOPEN_SOURCE and _GNU_SOURCE in pyconfig.h, to have them | Martin v. Löwis | 2002-07-20 | 1 | -11/+0 |
|
|
* | Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT. | Mark Hammond | 2002-07-19 | 2 | -39/+93 |
|
|
* | Define _XOPEN_SOURCE in configure and Python.h. | Jeremy Hylton | 2002-07-18 | 1 | -6/+1 |
|
|
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -18/+9 |
|
|
* | SF patch # 580411, move frame macros from frameobject.h into ceval.c | Neal Norwitz | 2002-07-14 | 1 | -20/+0 |
|
|
* | HAVE_LIMITS_H -- raise #error if not defined; limits.h is std C | Tim Peters | 2002-07-12 | 2 | -12/+2 |
|
|
* | object.h special-build macro minefield: renamed all the new lexical | Tim Peters | 2002-07-11 | 1 | -60/+40 |
|
|
* | Uglified the new Py_REF_DEBUG (etc) lexical helper macro definitions so | Tim Peters | 2002-07-10 | 1 | -21/+25 |
|
|
* | Fix SF Bug 564931: compile() traceback must include filename. | Thomas Heller | 2002-07-09 | 2 | -0/+8 |
|
|
* | The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added | Tim Peters | 2002-07-09 | 2 | -28/+36 |
|
|
* | Rearranged and added comments to object.h, to clarify many things | Tim Peters | 2002-07-07 | 1 | -74/+120 |
|
|
* | Trashcan cleanup: Now that cyclic gc is always there, the trashcan | Tim Peters | 2002-07-07 | 1 | -50/+53 |
|
|