| Commit message (Expand) | Author | Age | Files | Lines |
* | SF bug [#468061] __str__ ignored in str subclass. | Tim Peters | 2001-10-16 | 2 | -8/+21 |
|
|
* | 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 |
|
|
* | Remove extra "]" in splitlines() docstring. | Fred Drake | 2001-10-13 | 1 | -1/+1 |
|
|
* | Band-aid solution to SF bug #470634: readlines() on linux requires 2 ^D's. | Guido van Rossum | 2001-10-12 | 1 | -4/+11 |
|
|
* | 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 |
|
|
* | Rather gross workaround for a bug in the mac GUSI I/O library: | Jack Jansen | 2001-10-10 | 1 | -1/+7 |
|
|
* | 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 |
|
|
* | Implement isinstance(x, (A, B, ...)). Note that we only allow tuples, | Guido van Rossum | 2001-10-07 | 1 | -1/+16 |
|
|
* | Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. | Tim Peters | 2001-10-07 | 2 | -8/+4 |
|
|
* | _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. | Tim Peters | 2001-10-06 | 2 | -36/+14 |
|
|
* | Repaired the debug Windows deaths in test_descr, by allocating enough | Tim Peters | 2001-10-06 | 1 | -13/+23 |
|
|
* | _PyObject_GetDictPtr(): | Tim Peters | 2001-10-06 | 1 | -8/+12 |
|
|
* | PyObject_ClearWeakRefs() is now a real function instead of a function pointer; | Fred Drake | 2001-10-05 | 1 | -15/+0 |
|
|
* | The weak reference implementation, separated from the weakref module. | Fred Drake | 2001-10-05 | 1 | -0/+715 |
|
|
* | Enable GC for new-style instances. This touches lots of files, since | Guido van Rossum | 2001-10-05 | 12 | -26/+71 |
|
|
* | 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 | 2 | -40/+62 |
|
|
* | call_method(), call_maybe(): fix a performance bug: the argument | Guido van Rossum | 2001-10-03 | 1 | -8/+3 |
|
|
* | SF bug [#467265] Compile errors on SuSe Linux on IBM/s390. | Tim Peters | 2001-10-02 | 1 | -1/+6 |
|
|
* | Add Garbage Collection support to new-style classes (not yet to their | Guido van Rossum | 2001-10-02 | 2 | -29/+205 |
|
|
* | Miscellaneous code fiddling: | Guido van Rossum | 2001-10-01 | 1 | -28/+41 |
|
|
* | binary_op1(), ternary_op(): rearrange the code so that slotw is tested | Guido van Rossum | 2001-10-01 | 1 | -14/+14 |
|
|
* | 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 | 3 | -3/+3 |
|
|
* | SF [#466125] PyLong_AsLongLong works for any integer. | Tim Peters | 2001-09-30 | 1 | -1/+7 |
|
|
* | The changes to ternary_op could cause a core dump. Fix this, and | Guido van Rossum | 2001-09-29 | 1 | -55/+44 |
|
|
* | It's a fact: for binary operators, *under certain circumstances*, | Guido van Rossum | 2001-09-28 | 1 | -28/+48 |
|
|
* | 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 | 4 | -11/+106 |
|
|
* | 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 |
|
|
* | Make properties discoverable from Python: | Tim Peters | 2001-09-24 | 1 | -25/+56 |
|
|
* | Another comparison patch-up: comparing a type with a dynamic metatype | Guido van Rossum | 2001-09-24 | 1 | -1/+2 |
|
|