| Commit message (Expand) | Author | Age | Files | Lines |
* | add DEF_BOUND | Jeremy Hylton | 2001-02-28 | 1 | -1/+3 |
|
|
* | Add declaration for PyErr_WarnExplicit(). | Guido van Rossum | 2001-02-28 | 1 | -0/+2 |
|
|
* | Improve SyntaxErrors for bad future statements. Set file and location | Jeremy Hylton | 2001-02-28 | 1 | -0/+4 |
|
|
* | Presumed correct compiler pass for future statements | Jeremy Hylton | 2001-02-28 | 1 | -1/+1 |
|
|
* | Improved __future__ parser; still more to do | Jeremy Hylton | 2001-02-27 | 2 | -3/+14 |
|
|
* | Add Vladimir Marangozov's object allocator. It is disabled by default. This | Neil Schemenauer | 2001-02-27 | 1 | -0/+7 |
|
|
* | Preliminary support for future nested scopes | Jeremy Hylton | 2001-02-27 | 2 | -1/+9 |
|
|
* | The return value from PyObject_ClearWeakRefs() is no longer meaningful, | Fred Drake | 2001-02-26 | 1 | -1/+1 |
|
|
* | _Py_ReleaseInternedStrings(): Private API function to decref and | Barry Warsaw | 2001-02-23 | 1 | -0/+2 |
|
|
* | Relax the rules for using 'from ... import *' and exec in the presence | Jeremy Hylton | 2001-02-09 | 1 | -37/+27 |
|
|
* | Superseded by $(srcdir)/Makefile.pre.in. | Neil Schemenauer | 2001-02-03 | 1 | -12/+0 |
|
|
* | bump to 2.1a2 | Jeremy Hylton | 2001-02-02 | 1 | -3/+3 |
|
|
* | Fix symbol table pass to generation SyntaxError exceptions that | Jeremy Hylton | 2001-02-02 | 1 | -0/+1 |
|
|
* | Move a bunch of definitions that were internal to compile.c to | Jeremy Hylton | 2001-02-02 | 2 | -0/+100 |
|
|
* | Use a type flag to determine the applicability of the tp_weaklistoffset | Fred Drake | 2001-02-02 | 2 | -1/+10 |
|
|
* | Allow 'continue' inside 'try' clause | Jeremy Hylton | 2001-02-01 | 1 | -0/+1 |
|
|
* | Undo recent change that banned using import to bind a global, as per | Jeremy Hylton | 2001-02-01 | 1 | -0/+3 |
|
|
* | PEP 205, Weak References -- initial checkin. | Fred Drake | 2001-02-01 | 3 | -4/+17 |
|
|
* | Remove f_closure slot of frameobject and use f_localsplus instead. | Jeremy Hylton | 2001-01-29 | 1 | -1/+3 |
|
|
* | Added prototype for PyInstance_NewRaw(). | Fred Drake | 2001-01-28 | 1 | -0/+1 |
|
|
* | It's unclear whether PyMarshal_XXX() are part of the public or private API. | Tim Peters | 2001-01-28 | 1 | -0/+1 |
|
|
* | The addition of new parameters to functions in the Python/C API requires | Fred Drake | 2001-01-25 | 1 | -2/+5 |
|
|
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 4 | -7/+17 |
|
|
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 2 | -0/+29 |
|
|
* | Add a flag to indicate the presence of the tp_richcompare field, and | Guido van Rossum | 2001-01-24 | 1 | -2/+7 |
|
|
* | PyGC_Dump() -> _PyGC_Dump() | Barry Warsaw | 2001-01-24 | 1 | -1/+1 |
|
|
* | PyObject_Dump() -> _PyObject_Dump() | Barry Warsaw | 2001-01-24 | 1 | -1/+1 |
|
|
* | Add prototype for PyGC_Dump() -- but only inside the #ifdef | Barry Warsaw | 2001-01-23 | 1 | -0/+2 |
|
|
* | Add prototype for PyObject_Dump(). | Barry Warsaw | 2001-01-23 | 1 | -0/+1 |
|
|
* | Add a new API, PyThreadState_DeleteCurrent() that combines | Guido van Rossum | 2001-01-23 | 1 | -0/+3 |
|
|
* | Remove include-file-dependant half-prototype of clnt_create(). | Thomas Wouters | 2001-01-22 | 1 | -3/+0 |
|
|
* | Move declaration of 'clnt_create()' NIS function to pyport.h, as it's | Thomas Wouters | 2001-01-21 | 1 | -0/+3 |
|
|
* | Fix comment. | Neil Schemenauer | 2001-01-20 | 1 | -2/+2 |
|
|
* | refactored the unicodeobject/ucnhash interface, to hide the | Fredrik Lundh | 2001-01-19 | 1 | -18/+27 |
|
|
* | Move distributed and duplicated config for stat() and fstat() into pyport.h. | Tim Peters | 2001-01-18 | 1 | -2/+34 |
|
|
* | Get rid of the declaration for _PyCompareState_Key. | Guido van Rossum | 2001-01-17 | 1 | -3/+0 |
|
|
* | This patch adds a new builtin unistr() which behaves like str() | Marc-André Lemburg | 2001-01-17 | 2 | -0/+13 |
|
|
* | Rich comparisons: ensure that LT == Py_LT, etc. | Guido van Rossum | 2001-01-17 | 1 | -1/+2 |
|
|
* | Introduction to rich comparisons: | Guido van Rossum | 2001-01-17 | 1 | -12/+22 |
|
|
* | Bump version to 2.1a1. (To be released Friday.) | Guido van Rossum | 2001-01-17 | 1 | -4/+4 |
|
|
* | Committing PEP 232, function attribute feature, approved by Guido. | Barry Warsaw | 2001-01-15 | 1 | -0/+1 |
|
|
* | Change LONG_BIT error warning to mention glibc, too, since this is really | Andrew M. Kuchling | 2001-01-12 | 1 | -1/+1 |
|
|
* | - Add nb_cmp slot for new style nubmers. | Neil Schemenauer | 2001-01-04 | 1 | -0/+22 |
|
|
* | Remove PyInstance_*BinOp functions. | Neil Schemenauer | 2001-01-04 | 1 | -8/+0 |
|
|
* | Added header file for C API exported by _cursesmodule.c | Andrew M. Kuchling | 2000-12-22 | 1 | -0/+133 |
|
|
* | Add declarations for PySys_ResetWarnOptions() and | Guido van Rossum | 2000-12-15 | 1 | -0/+3 |
|
|
* | Add declarations for standard warning category classes (PyExc_Warning | Guido van Rossum | 2000-12-15 | 1 | -0/+10 |
|
|
* | Move our own getopt() implementation to _PyOS_GetOpt(), and use it | Thomas Wouters | 2000-11-03 | 1 | -0/+17 |
|
|
* | getting close | Jeremy Hylton | 2000-10-13 | 1 | -3/+3 |
|
|
* | Use suggested workaround for PyOS_CheckStack causing failure of test_[s]re.py | Trent Mick | 2000-10-11 | 1 | -1/+1 |
|
|