summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* Partial patch from SF #452266, by Jason Petrone.Guido van Rossum2001-10-161-1/+1
* Get rid of __defined__ and tp_defined -- there's no need toGuido van Rossum2001-10-151-1/+1
* Completely get rid of __dynamic__ and the correspondingGuido van Rossum2001-10-151-3/+0
* Use an assert() for the REQ() macro instead of making up our ownGuido van Rossum2001-10-151-10/+1
* Very subtle syntax change: in a list comprehension, the testlist inGuido van Rossum2001-10-151-7/+8
* Check for term.h and include it on non-ncurses system to get a declarationMartin v. Löwis2001-10-131-0/+4
* SF bug [#467145] Python 2.2a4 build problem on HPUX 11.0.Tim Peters2001-10-111-12/+15
* Keep track of a type's subclasses (subtypes), in tp_subclasses, whichGuido van Rossum2001-10-081-0/+2
* Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2.Tim Peters2001-10-071-28/+24
* _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value.Tim Peters2001-10-061-11/+35
* Repaired the debug Windows deaths in test_descr, by allocating enoughTim Peters2001-10-061-1/+2
* Remove bogus declaration.Fred Drake2001-10-051-2/+0
* PyObject_ClearWeakRefs() is now a real function instead of a function pointer;Fred Drake2001-10-051-1/+1
* Include the weakref object interface.Fred Drake2001-10-051-0/+1
* The weak reference implementation, separated from the weakref module.Fred Drake2001-10-051-0/+50
* weakref.ReferenceError becomes a built-in exception now that weak ref objectsFred Drake2001-10-051-0/+1
* Introduced the oddly-missing PyList_CheckExact(), and used it to replaceTim Peters2001-10-051-0/+1
* *EXPERIMENTAL* speedup of slot_sq_item. This sped up the followingGuido van Rossum2001-10-031-0/+34
* Add Garbage Collection support to new-style classes (not yet to theirGuido van Rossum2001-10-022-3/+9
* SF patch [#466353] Py_HUGE_VAL on BeOS for Intel.Tim Peters2001-10-011-1/+5
* PY_RELEASE_SERIAL => 4Barry Warsaw2001-09-281-2/+2
* Add optional docstrings to getset descriptors. Fortunately, there'sGuido van Rossum2001-09-202-5/+6
* Add optional docstrings to member descriptors. For backwardsGuido van Rossum2001-09-203-2/+18
* Patch #435971: UTF-7 codec by Brian Quinlan.Marc-André Lemburg2001-09-201-0/+18
* Fix for bug #462737.Marc-André Lemburg2001-09-191-3/+3
* Hopefully fix 3-way comparisons. This unfortunately adds yet anotherGuido van Rossum2001-09-181-0/+4
* Add support for restricting access based on restricted execution mode.Guido van Rossum2001-09-171-2/+6
* SF bug [#460467] file objects should be subclassable.Tim Peters2001-09-132-1/+3
* Again perhaps the end of [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-121-0/+1
* Possibly the end of SF [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-111-0/+2
* More on SF bug [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-111-0/+1
* More on SF bug [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-101-0/+1
* Prototype for PyMac_GetFullPathname().Jack Jansen2001-09-101-0/+1
* More for SF bug [#460020] bug or feature: unicode() and subclassesTim Peters2001-09-101-0/+1
* SF bug #460020: bug or feature: unicode() and subclasses.Tim Peters2001-09-103-0/+5
* PyModule_Check() now checks for subtype of module, as it should.Guido van Rossum2001-09-101-1/+1
* Generalize operator.indexOf (PySequence_Index) to work with anyTim Peters2001-09-081-8/+18
* Bumping version numbers.Barry Warsaw2001-09-071-2/+2
* Rename 'getset' to 'property'.Guido van Rossum2001-09-061-1/+1
* Add PyMethod_Function(), PyMethod_Self(), PyMethod_Class() back.Guido van Rossum2001-09-051-0/+4
* Rework the way we try to check for libm overflow, given that C99 no longerTim Peters2001-09-051-3/+30
* Repair indentation.Tim Peters2001-09-051-5/+5
* Try to recover from that glibc's ldexp apparently doesn't set errno onTim Peters2001-09-051-0/+20
* At Guido's suggestion, here's a new C API function, PyObject_Dir(), likeTim Peters2001-09-041-0/+8
* Introduce new private API function _PyLong_AsScaledDouble. Not used yet,Tim Peters2001-09-041-0/+9
* Fix the names of _PyObject_GC_TRACK and _PyObject_GC_UNTRACK when the GC isNeil Schemenauer2001-09-031-2/+2
* Added glue routine for PyMac_BuildFSSpec, PyMac_GetFSRef and PyMac_BuildFSRef.Jack Jansen2001-09-011-1/+5
* Add warning mode for classic division, almost exactly as specified inGuido van Rossum2001-08-312-0/+2
* Make the Py<type>_Check() macro use PyObject_TypeCheck().Guido van Rossum2001-08-303-3/+3
* Change the GC type flag since the API has changed. Allow types usingNeil Schemenauer2001-08-291-50/+66