| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | bump patchlevel to 2.0c1 | Jeremy Hylton | 2000-10-09 | 1 | -4/+4 |
|
|
* | Added Py_FPROTO macro which was available in Python 1.5.x and below. | Marc-André Lemburg | 2000-10-05 | 1 | -0/+3 |
|
|
* | Move LONG_BIT from intobject.c to pyport.h. #error if it's already been | Tim Peters | 2000-10-05 | 1 | -0/+13 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 3 | -7/+36 |
|
|
* | It's..... | Guido van Rossum | 2000-09-26 | 1 | -3/+3 |
|
|
* | Andrew Kuchling <akuchlin@mems-exchange.org>: | Fred Drake | 2000-09-23 | 1 | -0/+4 |
|
|
* | Derived from Martin's SF patch 110609: support unbounded ints in %d,i,u,x,X,... | Tim Peters | 2000-09-21 | 1 | -0/+2 |
|
|
* | This patch adds a new Python C API called PyString_AsStringAndSize() | Marc-André Lemburg | 2000-09-19 | 1 | -0/+15 |
|
|
* | Make better use of GNU Pth -- patch by Andy Dustman. | Guido van Rossum | 2000-09-19 | 1 | -1/+1 |
|
|
* | Add typedef PyOS_sighandler_t and prototypes for PyOS_getsig() and | Guido van Rossum | 2000-09-16 | 1 | -0/+6 |
|
|
* | RET_SAVE references should be Py_BLOCK_THREADS references | Skip Montanaro | 2000-09-15 | 1 | -2/+2 |
|
|
* | Close SF bug 110826: a complaint about the way Python #define'd NULL. | Tim Peters | 2000-09-10 | 3 | -11/+4 |
|
|
* | A #define didn't start in column 1. Closes SF bug 113888. | Tim Peters | 2000-09-08 | 1 | -1/+1 |
|
|
* | Add missing Py_PROTO macro for backward compatibility with old extensions | Vladimir Marangozov | 2000-09-08 | 1 | -1/+7 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 48 | -431/+0 |
|
|