| Commit message (Expand) | Author | Age | Files | Lines |
* | Partial patch from SF #452266, by Jason Petrone. | Guido van Rossum | 2001-10-16 | 1 | -1/+1 |
|
|
* | Get rid of __defined__ and tp_defined -- there's no need to | Guido van Rossum | 2001-10-15 | 1 | -1/+1 |
|
|
* | Completely get rid of __dynamic__ and the corresponding | Guido van Rossum | 2001-10-15 | 1 | -3/+0 |
|
|
* | Use an assert() for the REQ() macro instead of making up our own | Guido van Rossum | 2001-10-15 | 1 | -10/+1 |
|
|
* | Very subtle syntax change: in a list comprehension, the testlist in | Guido van Rossum | 2001-10-15 | 1 | -7/+8 |
|
|
* | Check for term.h and include it on non-ncurses system to get a declaration | Martin v. Löwis | 2001-10-13 | 1 | -0/+4 |
|
|
* | SF bug [#467145] Python 2.2a4 build problem on HPUX 11.0. | Tim Peters | 2001-10-11 | 1 | -12/+15 |
|
|
* | Keep track of a type's subclasses (subtypes), in tp_subclasses, which | Guido van Rossum | 2001-10-08 | 1 | -0/+2 |
|
|
* | Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. | Tim Peters | 2001-10-07 | 1 | -28/+24 |
|
|
* | _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. | Tim Peters | 2001-10-06 | 1 | -11/+35 |
|
|
* | Repaired the debug Windows deaths in test_descr, by allocating enough | Tim Peters | 2001-10-06 | 1 | -1/+2 |
|
|
* | Remove bogus declaration. | Fred Drake | 2001-10-05 | 1 | -2/+0 |
|
|
* | PyObject_ClearWeakRefs() is now a real function instead of a function pointer; | Fred Drake | 2001-10-05 | 1 | -1/+1 |
|
|
* | Include the weakref object interface. | Fred Drake | 2001-10-05 | 1 | -0/+1 |
|
|
* | The weak reference implementation, separated from the weakref module. | Fred Drake | 2001-10-05 | 1 | -0/+50 |
|
|
* | weakref.ReferenceError becomes a built-in exception now that weak ref objects | Fred Drake | 2001-10-05 | 1 | -0/+1 |
|
|
* | Introduced the oddly-missing PyList_CheckExact(), and used it to replace | Tim Peters | 2001-10-05 | 1 | -0/+1 |
|
|
* | *EXPERIMENTAL* speedup of slot_sq_item. This sped up the following | Guido van Rossum | 2001-10-03 | 1 | -0/+34 |
|
|
* | Add Garbage Collection support to new-style classes (not yet to their | Guido van Rossum | 2001-10-02 | 2 | -3/+9 |
|
|
* | SF patch [#466353] Py_HUGE_VAL on BeOS for Intel. | Tim Peters | 2001-10-01 | 1 | -1/+5 |
|
|
* | PY_RELEASE_SERIAL => 4 | Barry Warsaw | 2001-09-28 | 1 | -2/+2 |
|
|
* | Add optional docstrings to getset descriptors. Fortunately, there's | Guido van Rossum | 2001-09-20 | 2 | -5/+6 |
|
|
* | Add optional docstrings to member descriptors. For backwards | Guido van Rossum | 2001-09-20 | 3 | -2/+18 |
|
|
* | Patch #435971: UTF-7 codec by Brian Quinlan. | Marc-André Lemburg | 2001-09-20 | 1 | -0/+18 |
|
|
* | Fix for bug #462737. | Marc-André Lemburg | 2001-09-19 | 1 | -3/+3 |
|
|
* | Hopefully fix 3-way comparisons. This unfortunately adds yet another | Guido van Rossum | 2001-09-18 | 1 | -0/+4 |
|
|
* | Add support for restricting access based on restricted execution mode. | Guido van Rossum | 2001-09-17 | 1 | -2/+6 |
|
|
* | SF bug [#460467] file objects should be subclassable. | Tim Peters | 2001-09-13 | 2 | -1/+3 |
|
|
* | Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-12 | 1 | -0/+1 |
|
|
* | Possibly the end of SF [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-11 | 1 | -0/+2 |
|
|
* | More on SF bug [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-11 | 1 | -0/+1 |
|
|
* | More on SF bug [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 1 | -0/+1 |
|
|
* | Prototype for PyMac_GetFullPathname(). | Jack Jansen | 2001-09-10 | 1 | -0/+1 |
|
|
* | More for SF bug [#460020] bug or feature: unicode() and subclasses | Tim Peters | 2001-09-10 | 1 | -0/+1 |
|
|
* | SF bug #460020: bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 3 | -0/+5 |
|
|
* | PyModule_Check() now checks for subtype of module, as it should. | Guido van Rossum | 2001-09-10 | 1 | -1/+1 |
|
|
* | Generalize operator.indexOf (PySequence_Index) to work with any | Tim Peters | 2001-09-08 | 1 | -8/+18 |
|
|
* | Bumping version numbers. | Barry Warsaw | 2001-09-07 | 1 | -2/+2 |
|
|
* | Rename 'getset' to 'property'. | Guido van Rossum | 2001-09-06 | 1 | -1/+1 |
|
|
* | Add PyMethod_Function(), PyMethod_Self(), PyMethod_Class() back. | Guido van Rossum | 2001-09-05 | 1 | -0/+4 |
|
|
* | Rework the way we try to check for libm overflow, given that C99 no longer | Tim Peters | 2001-09-05 | 1 | -3/+30 |
|
|
* | Repair indentation. | Tim Peters | 2001-09-05 | 1 | -5/+5 |
|
|
* | Try to recover from that glibc's ldexp apparently doesn't set errno on | Tim Peters | 2001-09-05 | 1 | -0/+20 |
|
|
* | At Guido's suggestion, here's a new C API function, PyObject_Dir(), like | Tim Peters | 2001-09-04 | 1 | -0/+8 |
|
|
* | Introduce new private API function _PyLong_AsScaledDouble. Not used yet, | Tim Peters | 2001-09-04 | 1 | -0/+9 |
|
|
* | Fix the names of _PyObject_GC_TRACK and _PyObject_GC_UNTRACK when the GC is | Neil Schemenauer | 2001-09-03 | 1 | -2/+2 |
|
|
* | Added glue routine for PyMac_BuildFSSpec, PyMac_GetFSRef and PyMac_BuildFSRef. | Jack Jansen | 2001-09-01 | 1 | -1/+5 |
|
|
* | Add warning mode for classic division, almost exactly as specified in | Guido van Rossum | 2001-08-31 | 2 | -0/+2 |
|
|
* | Make the Py<type>_Check() macro use PyObject_TypeCheck(). | Guido van Rossum | 2001-08-30 | 3 | -3/+3 |
|
|
* | Change the GC type flag since the API has changed. Allow types using | Neil Schemenauer | 2001-08-29 | 1 | -50/+66 |
|
|