- 2fb9fdc Make it possible to call instancemethod() with 2 arguments. by Guido van Rossum · 22 years ago
- df875b9 New private API function _PyInstance_Lookup. gc will use this to figure by Tim Peters · 22 years ago
- 6bae46d Refactor instancemethod_descr_get() to (a) be more clear, (b) be safe by Guido van Rossum · 22 years ago
- ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 22 years ago
- 7e5c6a0 Change issubclass() so that recursive tuples (directly or indirectly by Walter Dörwald · 22 years ago
- d9a6ad3 Enhance issubclass() and PyObject_IsSubclass() so that a tuple is by Walter Dörwald · 22 years ago
- f740bdf Since properties are supported here, is possible that by Guido van Rossum · 22 years ago
- 617080b Fix (real! :-) memory leaks in half_cmp and half_binop. by Guido van Rossum · 22 years ago
- 75585d4 getinstclassname(): Squash new compiler wng in assert (comparison of by Tim Peters · 22 years ago
- 45ec02a SF patch 576101, by Oren Tirosh: alternative implementation of by Guido van Rossum · 22 years ago
- 3459251 object.h special-build macro minefield: renamed all the new lexical by Tim Peters · 22 years ago
- 943382c Removed WITH_CYCLE_GC #ifdef-ery. Holes: by Tim Peters · 22 years ago
- b1e8154 About the new but unreferenced new_class, Guido sez: by Michael W. Hudson · 22 years ago
- bea18cc SF patch 568629 by Oren Tirosh: types made callable. by Guido van Rossum · 22 years ago
- e7b8ecf Major cleanup operation: whenever there's a call that looks for an by Guido van Rossum · 22 years ago
- 16b93b3 Fix for SF bug 532646. This is a little simpler than what Neal by Guido van Rossum · 22 years ago
- c916f5a Be smarter about clearing the weakref lists for instances, instance methods, by Fred Drake · 23 years ago
- 56ff387 Fix for SF bug #472940: can't getattr() attribute shown by dir() by Guido van Rossum · 23 years ago
- 915f0eb Protect references to tp_descr_get and tp_dict with the appropriate test: by Guido van Rossum · 23 years ago
- 8b13b3e SF bug [#466173] unpack TypeError unclear by Tim Peters · 23 years ago
- 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
- 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
- cf95f9c Properly repr classes without module names. by Martin v. Löwis · 23 years ago
- f0b35e1 Redo the PyMethod attributes using a dir()-friendly approach, creating by Guido van Rossum · 23 years ago
- 16a77ad Generalize operator.indexOf (PySequence_Index) to work with any by Tim Peters · 23 years ago
- 28d80b1 PyClass_New(): put the extended Don Beaudry hook back in. When one of by Guido van Rossum · 23 years ago
- b479dc5 Add PyMethod_Function(), PyMethod_Self(), PyMethod_Class() back. by Guido van Rossum · 23 years ago
- e83c00e Use new GC API. by Neil Schemenauer · 23 years ago
- a15dece Improve the error message issued when an unbound method is called with by Guido van Rossum · 23 years ago
- 7ce3694 repr's converted to using PyString_FromFormat() instead of sprintf'ing by Barry Warsaw · 23 years ago
- 4066769 Fix core dump in repr() of instancemethod whose class==NULL. by Guido van Rossum · 23 years ago
- f23c41d instance_getattr2(): rewritten to remove unnecessary stuff and by Guido van Rossum · 23 years ago
- cdf0d75 Instance methods: allow a NULL value for im_class. by Guido van Rossum · 23 years ago
- 501c7c7 classobject.c:instancemethod_descr_get(): when a bound method is by Guido van Rossum · 23 years ago
- 23cc2b4 PyMethod_Type: add a tp_descr_get slot function to ensure proper by Guido van Rossum · 23 years ago
- 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
- 5962cbf Fix the test_weakref.py failure. Introduced by resolving "a conflict" by Tim Peters · 23 years ago
- 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
- 0ba9e3a init_name_op(): add (void) to the argument list to make it a valid by Guido van Rossum · 23 years ago
- 1b0feb4 Variant of SF patch 423181 by Jeremy Hylton · 23 years ago
- cb8d368 Reimplement PySequence_Contains() and instance_contains(), so they work by Tim Peters · 24 years ago
- 4dcb85b Since Py_TPFLAGS_HAVE_WEAKREFS is set in Py_TPFLAGS_DEFAULT, it does not by Fred Drake · 24 years ago
- 82c690f Well darnit! The innocuous fix I made to PyObject_Print() caused by Guido van Rossum · 24 years ago
- 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 24 years ago
- 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 24 years ago
- db81e8d Add support for weak references to the function and method types. by Fred Drake · 24 years ago
- 4e262a9 A small change to the C API for weakly-referencable types: Such types by Fred Drake · 24 years ago
- b60654b The return value from PyObject_ClearWeakRefs() is no longer meaningful, by Fred Drake · 24 years ago
- 4f9b13b instancemethod_setattro(): Raise TypeError if an attempt is made to by Barry Warsaw · 24 years ago
- 41deb1e PEP 205, Weak References -- initial checkin. by Fred Drake · 24 years ago
- 3202c6f Rename dubiously named local variable 'cmpfunc' -- this is also a by Guido van Rossum · 24 years ago
- 09ac89a fix indentation glitch by Jeremy Hylton · 24 years ago
- 5cc2c8c Re-factored PyInstance_New() into PyInstance_New() and PyInstance_NewRaw(). by Fred Drake · 24 years ago
- 65e8bd7 Rich comparisons fallout: instance_hash() should check for both by Guido van Rossum · 24 years ago
- 24f67d5 Fix a leak in instance_coerce(). This was introduced by Neil's by Guido van Rossum · 24 years ago
- 8998b4f Rich comparisons. by Guido van Rossum · 24 years ago
- d6a9e84 Committing PEP 232, function attribute feature, approved by Guido. by Barry Warsaw · 24 years ago
- 29bfc07 Make instances a new style number type. See PEP 208 for details. Instance by Neil Schemenauer · 24 years ago
- 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
- e3550a6 - fix a GC bug caused by malloc() failing by Neil Schemenauer · 24 years ago
- 6b18491 Fix for SF bug 110688: Instance deallocation neglected to account for by Tim Peters · 24 years ago
- ce20967 Don't remove instance objects from the GC container set until we are by Neil Schemenauer · 24 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
- b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 24 years ago
- 1de2a79 Call PyErr_Clear() to clear the AttributeError raised by GetAttr. by Thomas Wouters · 24 years ago
- e289e0b Support for the in-place operations introduced by augmented assignment. Only by Thomas Wouters · 24 years ago
- dc55d71 PyInstance_DoBinOp(): When comparing the pointers, they must be cast by Barry Warsaw · 24 years ago
- 1d75a79 Apply SF patch #101029: call __getitem__ with a proper slice object if there by Thomas Wouters · 24 years ago
- c307352 ANSIfy functions that were hiding inside a macro. by Thomas Wouters · 24 years ago
- 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
- 7991247 ANSI-fication of the sources. by Fred Drake · 24 years ago
- dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
- 4ca150b _Py_RefTotal should only be declared here when Py_TRACE_REFS are #define'd by Skip Montanaro · 24 years ago
- 4cc6ac7 Neil Schemenauer: small fixes for GC by Guido van Rossum · 24 years ago
- ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
- fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
- a44d353 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
- c5007aa final patches from Neil Schemenauer for garbage collection by Jeremy Hylton · 24 years ago
- 13634cf This patch addresses two main issues: (1) There exist some non-fatal by Fred Drake · 24 years ago
- d7823f2 Vladimir Marangozov: by Guido van Rossum · 24 years ago
- ad89bbc Trent Mick: change a few casts for Win64 compatibility. by Guido van Rossum · 24 years ago
- d08b4c4 part 2 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
- d22162b traverse functions should return 0 on success by Jeremy Hylton · 24 years ago
- 8caad49 Round 1 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
- b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
- 9e392e2 potentially useless optimization by Jeremy Hylton · 25 years ago
- 5f8b12f Mark Hammond: by Guido van Rossum · 25 years ago
- ee28c3a Patch by Mozhe Zadka, for __contains__ (overloading 'in'). This adds by Guido van Rossum · 25 years ago
- bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 25 years ago
- 42636dc Fix for PR#98 (Adrian Eyre) -- in instancemethod_repr, the funcname by Guido van Rossum · 25 years ago
- 152d817 Fix a memory leak -- the cached values of __getattr__ etc. were never freed. by Guido van Rossum · 26 years ago
- d4ba73c Move the definition of PyMethodObject to classobject.h, so it can define by Guido van Rossum · 26 years ago
- 7859f87 Marc-Andre Lemburg's patch to support instance methods with other by Guido van Rossum · 26 years ago
- 7ba3043 Recompute the special getattr/setattr/delattr cache slots after by Guido van Rossum · 26 years ago
- e0fdf6f Keep Microsoft's compiler happy. by Guido van Rossum · 26 years ago
- a63eff6 Allow assignments to special class attributes -- with typechecks, and by Guido van Rossum · 26 years ago
- 617c1b0 Uses PyErr_ExceptionMatches() instead of comparing PyErr_Occurred(). by Guido van Rossum · 26 years ago
- 4180cf1 Remove a redundant statement from halfbinop(). by Guido van Rossum · 26 years ago
- b7f1afe Change the default repr() and str() of class instance objects to look by Guido van Rossum · 27 years ago
- 3931df9 Undo another glitch of the automatic not-so-Grand Renaming; some local by Guido van Rossum · 27 years ago