| Commit message (Expand) | Author | Age | Files | Lines |
* | Repair the same thinko in two places about handling of _Py_RefTotal in | Michael W. Hudson | 2004-08-03 | 1 | -6/+7 |
|
|
* | - When method objects have an attribute that can be satisfied either | Guido van Rossum | 2003-11-22 | 1 | -28/+30 |
|
|
* | Deleting cyclic object comparison. | Armin Rigo | 2003-10-28 | 1 | -6/+4 |
|
|
* | Simplify and speedup uses of Py_BuildValue(): | Raymond Hettinger | 2003-10-12 | 1 | -14/+14 |
|
|
* | Fix leak in classobject.c. The leak surfaced on the error exit when | Raymond Hettinger | 2003-09-16 | 1 | -0/+1 |
|
|
* | Make it possible to call instancemethod() with 2 arguments. | Guido van Rossum | 2003-04-09 | 1 | -2/+2 |
|
|
* | New private API function _PyInstance_Lookup. gc will use this to figure | Tim Peters | 2003-04-07 | 1 | -0/+21 |
|
|
* | Refactor instancemethod_descr_get() to (a) be more clear, (b) be safe | Guido van Rossum | 2003-02-11 | 1 | -8/+18 |
|
|
* | SF patch #659536: Use PyArg_UnpackTuple where possible. | Raymond Hettinger | 2002-12-29 | 1 | -1/+1 |
|
|
* | Change issubclass() so that recursive tuples (directly or indirectly | Walter Dörwald | 2002-12-12 | 1 | -1/+2 |
|
|
* | Enhance issubclass() and PyObject_IsSubclass() so that a tuple is | Walter Dörwald | 2002-12-12 | 1 | -0/+7 |
|
|
* | Since properties are supported here, is possible that | Guido van Rossum | 2002-10-29 | 1 | -13/+12 |
|
|
* | Fix (real! :-) memory leaks in half_cmp and half_binop. | Guido van Rossum | 2002-10-18 | 1 | -1/+4 |
|
|
* | getinstclassname(): Squash new compiler wng in assert (comparison of | Tim Peters | 2002-08-20 | 1 | -1/+1 |
|
|
* | SF patch 576101, by Oren Tirosh: alternative implementation of | Guido van Rossum | 2002-08-19 | 1 | -20/+24 |
|
|
* | object.h special-build macro minefield: renamed all the new lexical | Tim Peters | 2002-07-11 | 1 | -49/+38 |
|
|
* | Removed WITH_CYCLE_GC #ifdef-ery. Holes: | Tim Peters | 2002-07-07 | 1 | -3/+0 |
|
|
* | About the new but unreferenced new_class, Guido sez: | Michael W. Hudson | 2002-06-18 | 1 | -15/+0 |
|
|
* | SF patch 568629 by Oren Tirosh: types made callable. | Guido van Rossum | 2002-06-14 | 1 | -5/+93 |
|
|
* | Major cleanup operation: whenever there's a call that looks for an | Guido van Rossum | 2002-06-13 | 1 | -10/+59 |
|
|
* | Fix for SF bug 532646. This is a little simpler than what Neal | Guido van Rossum | 2002-06-13 | 1 | -1/+17 |
|
|
* | Be smarter about clearing the weakref lists for instances, instance methods, | Fred Drake | 2001-10-26 | 1 | -2/+4 |
|
|
* | Fix for SF bug #472940: can't getattr() attribute shown by dir() | Guido van Rossum | 2001-10-22 | 1 | -28/+1 |
|
|
* | Protect references to tp_descr_get and tp_dict with the appropriate test: | Guido van Rossum | 2001-10-17 | 1 | -9/+14 |
|
|
* | SF bug [#466173] unpack TypeError unclear | Tim Peters | 2001-09-30 | 1 | -1/+1 |
|
|
* | Add optional docstrings to getset descriptors. Fortunately, there's | Guido van Rossum | 2001-09-20 | 1 | -4/+4 |
|
|
* | Add optional docstrings to member descriptors. For backwards | Guido van Rossum | 2001-09-20 | 1 | -4/+7 |
|
|
* | Properly repr classes without module names. | Martin v. Löwis | 2001-09-18 | 1 | -1/+1 |
|
|
* | Redo the PyMethod attributes using a dir()-friendly approach, creating | Guido van Rossum | 2001-09-18 | 1 | -37/+69 |
|
|
* | Generalize operator.indexOf (PySequence_Index) to work with any | Tim Peters | 2001-09-08 | 1 | -1/+2 |
|
|
* | PyClass_New(): put the extended Don Beaudry hook back in. When one of | Guido van Rossum | 2001-09-07 | 1 | -4/+14 |
|
|
* | Add PyMethod_Function(), PyMethod_Self(), PyMethod_Class() back. | Guido van Rossum | 2001-09-05 | 1 | -0/+30 |
|
|
* | Use new GC API. | Neil Schemenauer | 2001-08-29 | 1 | -22/+19 |
|
|
* | Improve the error message issued when an unbound method is called with | Guido van Rossum | 2001-08-24 | 1 | -3/+49 |
|
|
* | repr's converted to using PyString_FromFormat() instead of sprintf'ing | Barry Warsaw | 2001-08-24 | 1 | -19/+14 |
|
|
* | Fix core dump in repr() of instancemethod whose class==NULL. | Guido van Rossum | 2001-08-17 | 1 | -7/+11 |
|
|
* | instance_getattr2(): rewritten to remove unnecessary stuff and | Guido van Rossum | 2001-08-17 | 1 | -24/+13 |
|
|
* | Instance methods: allow a NULL value for im_class. | Guido van Rossum | 2001-08-17 | 1 | -2/+2 |
|
|
* | classobject.c:instancemethod_descr_get(): when a bound method is | Guido van Rossum | 2001-08-16 | 1 | -0/+5 |
|
|
* | PyMethod_Type: add a tp_descr_get slot function to ensure proper | Guido van Rossum | 2001-08-15 | 1 | -1/+19 |
|
|
* | Implement PEP 238 in its (almost) full glory. | Guido van Rossum | 2001-08-08 | 1 | -0/+8 |
|
|
* | Fix the test_weakref.py failure. Introduced by resolving "a conflict" | Tim Peters | 2001-08-02 | 1 | -7/+0 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -74/+161 |
|
|
* | init_name_op(): add (void) to the argument list to make it a valid | Guido van Rossum | 2001-05-22 | 1 | -1/+1 |
|
|
* | Variant of SF patch 423181 | Jeremy Hylton | 2001-05-11 | 1 | -21/+51 |
|
|
* | Reimplement PySequence_Contains() and instance_contains(), so they work | Tim Peters | 2001-05-05 | 1 | -37/+30 |
|
|
* | Since Py_TPFLAGS_HAVE_WEAKREFS is set in Py_TPFLAGS_DEFAULT, it does not | Fred Drake | 2001-05-03 | 1 | -1/+1 |
|
|
* | Well darnit! The innocuous fix I made to PyObject_Print() caused | Guido van Rossum | 2001-04-30 | 1 | -1/+20 |
|
|
* | Mondo changes to the iterator stuff, without changing how Python code | Guido van Rossum | 2001-04-23 | 1 | -2/+38 |
|
|
* | Iterators phase 1. This comprises: | Guido van Rossum | 2001-04-20 | 1 | -2/+29 |
|
|