| Commit message (Expand) | Author | Age | Files | Lines |
* | Allow assignment to newinstance.__dict__. | Guido van Rossum | 2001-10-26 | 1 | -1/+24 |
|
|
* | Methods of built-in types now properly check for keyword arguments | Guido van Rossum | 2001-10-22 | 1 | -12/+14 |
|
|
* | Add missing "static" declarations (found by "make smelly"). | Neil Schemenauer | 2001-10-21 | 1 | -4/+4 |
|
|
* | Big internal change that should have no external effects: unify the | Guido van Rossum | 2001-10-21 | 1 | -527/+243 |
|
|
* | Fix SF bug #472234: type(obj) calls type->tp_init (Roeland Rengelink) | Guido van Rossum | 2001-10-18 | 1 | -0/+7 |
|
|
* | Remove a bunch of stuff that's no longer needed now that update_slot() | Guido van Rossum | 2001-10-17 | 1 | -42/+20 |
|
|
* | slot_sq_item(): ensure that self is an instance of the wrapper's | Guido van Rossum | 2001-10-17 | 1 | -3/+5 |
|
|
* | Refactored the update_slot() code a bit to be hopefully slightly more | Guido van Rossum | 2001-10-16 | 1 | -57/+61 |
|
|
* | Get rid of __defined__ and tp_defined -- there's no need to | Guido van Rossum | 2001-10-15 | 1 | -41/+23 |
|
|
* | Completely get rid of __dynamic__ and the corresponding | Guido van Rossum | 2001-10-15 | 1 | -101/+21 |
|
|
* | Add (void *) casts to solve some problems on HP-UX 11.0, as discussed | Guido van Rossum | 2001-10-15 | 1 | -3/+3 |
|
|
* | Redid the slot computation. The initial slot assignments are now done | Guido van Rossum | 2001-10-13 | 1 | -64/+91 |
|
|
* | Now that COPYBUF is a new local macro, add #undef COPYBUF. | Guido van Rossum | 2001-10-12 | 1 | -0/+1 |
|
|
* | SF bug [#470040] ParseTuple t# vs subclasses. | Tim Peters | 2001-10-12 | 1 | -1/+11 |
|
|
* | Another step in the right direction: when a new class's attribute | Guido van Rossum | 2001-10-11 | 1 | -33/+116 |
|
|
* | The slot definition table entry for mp_getitem had a bogus wrapper | Guido van Rossum | 2001-10-09 | 1 | -1/+2 |
|
|
* | Halfway checkin. This is still messy, but it's beginning to address | Guido van Rossum | 2001-10-09 | 1 | -140/+301 |
|
|
* | It turned out not so difficult to support old-style numbers (those | Guido van Rossum | 2001-10-09 | 1 | -7/+24 |
|
|
* | type_subclasses(): debug build was broken due to typo in new assert(). | Tim Peters | 2001-10-08 | 1 | -1/+1 |
|
|
* | Keep track of a type's subclasses (subtypes), in tp_subclasses, which | Guido van Rossum | 2001-10-08 | 1 | -1/+71 |
|
|
* | Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. | Tim Peters | 2001-10-07 | 1 | -3/+1 |
|
|
* | _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. | Tim Peters | 2001-10-06 | 1 | -18/+3 |
|
|
* | Repaired the debug Windows deaths in test_descr, by allocating enough | Tim Peters | 2001-10-06 | 1 | -13/+23 |
|
|
* | Enable GC for new-style instances. This touches lots of files, since | Guido van Rossum | 2001-10-05 | 1 | -10/+37 |
|
|
* | Make new classes dynamic by default. | Guido van Rossum | 2001-10-04 | 1 | -16/+4 |
|
|
* | type_new(): cast PyObject_MALLOC's result to char*, for clarity. | Tim Peters | 2001-10-04 | 1 | -1/+1 |
|
|
* | SF bug [#467331] ClassType.__doc__ always None. | Tim Peters | 2001-10-04 | 1 | -1/+24 |
|
|
* | typeobject.c, slot_tp_gettattr_hook(): fix the speedup hack -- the | Guido van Rossum | 2001-10-03 | 1 | -0/+12 |
|
|
* | *EXPERIMENTAL* speedup of slot_sq_item. This sped up the following | Guido van Rossum | 2001-10-03 | 1 | -7/+61 |
|
|
* | call_method(), call_maybe(): fix a performance bug: the argument | Guido van Rossum | 2001-10-03 | 1 | -8/+3 |
|
|
* | Add Garbage Collection support to new-style classes (not yet to their | Guido van Rossum | 2001-10-02 | 1 | -9/+111 |
|
|
* | Miscellaneous code fiddling: | Guido van Rossum | 2001-10-01 | 1 | -28/+41 |
|
|
* | slot_sq_length(): squash a leak. | Guido van Rossum | 2001-10-01 | 1 | -1/+4 |
|
|
* | slot_tp_new(): newargs was leaking. | Guido van Rossum | 2001-10-01 | 1 | -0/+1 |
|
|
* | Fix typo found by doerwalter. | Guido van Rossum | 2001-10-01 | 1 | -1/+1 |
|
|
* | SF bug [#466173] unpack TypeError unclear | Tim Peters | 2001-09-30 | 1 | -1/+1 |
|
|
* | Ouch. The wrapper for __rpow__ was the same as for __pow__, resulting | Guido van Rossum | 2001-09-28 | 1 | -1/+15 |
|
|
* | Merge branch changes (coercion, rich comparisons) into trunk. | Guido van Rossum | 2001-09-27 | 1 | -3/+94 |
|
|
* | add_operators(): the __floordiv__ and __truediv__ descriptors (and | Guido van Rossum | 2001-09-25 | 1 | -0/+10 |
|
|
* | - Provisional support for pickling new-style objects. (*) | Guido van Rossum | 2001-09-25 | 1 | -11/+50 |
|
|
* | Change repr() of a new-style class to say <class 'ClassName'> rather | Guido van Rossum | 2001-09-25 | 1 | -4/+11 |
|
|
* | Make __class__ assignment possible, when the object structures are the | Guido van Rossum | 2001-09-25 | 1 | -4/+83 |
|
|
* | Another comparison patch-up: comparing a type with a dynamic metatype | Guido van Rossum | 2001-09-24 | 1 | -1/+2 |
|
|
* | Fix the baffler that Tim reported: sometimes the repr() of an object | Guido van Rossum | 2001-09-24 | 1 | -2/+2 |
|
|
* | Add the __getattr__ hook back. The rules are now: | Guido van Rossum | 2001-09-21 | 1 | -0/+39 |
|
|
* | Change the name of the __getattr__ special method for new-style | Guido van Rossum | 2001-09-21 | 1 | -4/+4 |
|
|
* | Add optional docstrings to getset descriptors. Fortunately, there's | Guido van Rossum | 2001-09-20 | 1 | -3/+3 |
|
|
* | Add optional docstrings to member descriptors. For backwards | Guido van Rossum | 2001-09-20 | 1 | -9/+11 |
|
|
* | Hopefully fix 3-way comparisons. This unfortunately adds yet another | Guido van Rossum | 2001-09-18 | 1 | -5/+6 |
|
|
* | wrap_cmpfunc(): added a safety check for the __cmp__ wrapper. We can | Guido van Rossum | 2001-09-18 | 1 | -0/+9 |
|
|