| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Removed WITH_CYCLE_GC #ifdef-ery. Holes: | Tim Peters | 2002-07-07 | 3 | -23/+8 |
|
|
* | Stop trying to cater to platforms with a broken HUGE_VAL definition. It | Tim Peters | 2002-07-03 | 1 | -12/+7 |
|
|
* | Finished transitioning to using gc_refs to track gc objects' states. | Tim Peters | 2002-07-02 | 1 | -3/+5 |
|
|
* | Reserved another gc_refs value for untracked objects. Every live gc | Tim Peters | 2002-07-02 | 1 | -2/+10 |
|
|
* | SF 569257 -- Name mangle double underscored variable names in __slots__. | Raymond Hettinger | 2002-06-20 | 1 | -0/+4 |
|
|
* | The opcode FOR_LOOP no longer exists. | Guido van Rossum | 2002-06-13 | 1 | -1/+0 |
|
|
* | This is my nearly two year old patch | Michael W. Hudson | 2002-06-11 | 1 | -0/+3 |
|
|
* | Patch #505375: Make doc strings optional. | Martin v. Löwis | 2002-06-09 | 1 | -0/+10 |
|
|
* | Patch #555929: Cygwin AH_BOTTOM cleanup patch (*** version 2 ***) | Jason Tishler | 2002-06-04 | 2 | -8/+18 |
|
|
* | As discussed on python-dev, add a mechanism to indicate features | Neal Norwitz | 2002-05-29 | 1 | -0/+1 |
|
|
* | Fix for bug [ 561796 ] string.find causes lazy error | Marc-André Lemburg | 2002-05-29 | 1 | -1/+2 |
|
|
* | Silly typo. | Michael W. Hudson | 2002-05-27 | 1 | -1/+1 |
|
|
* | - A new type object, 'string', is added. This is a common base type | Guido van Rossum | 2002-05-24 | 1 | -0/+1 |
|
|
* | Disambiguate the grammar for backtick. | Guido van Rossum | 2002-05-24 | 1 | -0/+1 |
|
|
* | Add missing \ to macro definition only used when universal newlines | Guido van Rossum | 2002-05-24 | 1 | -1/+1 |
|
|
* | Back out #555929 | Martin v. Löwis | 2002-05-15 | 2 | -12/+3 |
|
|
* | Patch #555929: Cygwin AH_BOTTOM cleanup patch | Jason Tishler | 2002-05-15 | 2 | -3/+12 |
|
|
* | Patch #552433: Special-case tuples. Avoid sub-type checking for lists. | Martin v. Löwis | 2002-05-08 | 1 | -0/+6 |
|
|
* | _PyGC_generation0 is now a pointer | Neil Schemenauer | 2002-05-04 | 1 | -4/+4 |
|
|