| Commit message (Expand) | Author | Age | Files | Lines |
* | SF bug [#468061] __str__ ignored in str subclass. | Tim Peters | 2001-10-16 | 1 | -0/+31 |
|
|
* | Completely get rid of __dynamic__ and the corresponding | Guido van Rossum | 2001-10-15 | 1 | -53/+21 |
|
|
* | SF bug [#470040] ParseTuple t# vs subclasses. | Tim Peters | 2001-10-12 | 1 | -1/+32 |
|
|
* | Another step in the right direction: when a new class's attribute | Guido van Rossum | 2001-10-11 | 1 | -16/+79 |
|
|
* | Add a bunch of tests for a list subclass that would have caught the | Guido van Rossum | 2001-10-09 | 1 | -0/+22 |
|
|
* | It turned out not so difficult to support old-style numbers (those | Guido van Rossum | 2001-10-09 | 1 | -5/+6 |
|
|
* | Change all occurrences of verify(x == y) into vereq(x, y), since when | Guido van Rossum | 2001-10-08 | 1 | -374/+376 |
|
|
* | class_docstrings(): The new-style class tests should use new-style | Tim Peters | 2001-10-04 | 1 | -4/+4 |
|
|
* | SF bug [#467331] ClassType.__doc__ always None. | Tim Peters | 2001-10-04 | 1 | -1/+34 |
|
|
* | dynamics(): add a dummy __getattr__ method to the C class so that the | Guido van Rossum | 2001-10-03 | 1 | -0/+5 |
|
|
* | pickles(): | Guido van Rossum | 2001-10-02 | 1 | -18/+22 |
|
|
* | Add a few ``__dynamic__ = 0'' lines in classes that need to preserve | Guido van Rossum | 2001-09-29 | 1 | -3/+7 |
|
|
* | It's a fact: for binary operators, *under certain circumstances*, | Guido van Rossum | 2001-09-28 | 1 | -1/+36 |
|
|
* | Changes to copy() and deepcopy() in copy.py to support __reduce__ as a | Guido van Rossum | 2001-09-28 | 1 | -1/+43 |
|
|
* | - Provisional support for pickling new-style objects. (*) | Guido van Rossum | 2001-09-25 | 1 | -1/+62 |
|
|
* | Make __class__ assignment possible, when the object structures are the | Guido van Rossum | 2001-09-25 | 1 | -0/+28 |
|
|
* | Make properties discoverable from Python: | Tim Peters | 2001-09-24 | 1 | -2/+28 |
|
|
* | Another comparison patch-up: comparing a type with a dynamic metatype | Guido van Rossum | 2001-09-24 | 1 | -0/+7 |
|
|
* | Do the same thing to complex that I did to str: the rich comparison | Guido van Rossum | 2001-09-24 | 1 | -0/+15 |
|
|
* | Change string comparison so that it applies even when one (or both) | Guido van Rossum | 2001-09-24 | 1 | -6/+6 |
|
|
* | 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 | -5/+4 |
|
|
* | Change the name of the __getattr__ special method for new-style | Guido van Rossum | 2001-09-21 | 1 | -6/+6 |
|
|
* | Add a small test to verify that member and getset descriptors now have | Guido van Rossum | 2001-09-20 | 1 | -0/+8 |
|
|
* | Change testdescr.py to use the test_main() approach. | Guido van Rossum | 2001-09-20 | 1 | -4/+4 |
|
|
* | Add additional coercion support for "self subtypes" to int, long, | Guido van Rossum | 2001-09-19 | 1 | -0/+28 |
|
|
* | Enable two checks for comparing a complex to a complex subtype | Guido van Rossum | 2001-09-19 | 1 | -3/+4 |
|
|
* | Enable some comparison tests that failed before. Still having problems | Tim Peters | 2001-09-18 | 1 | -3/+3 |
|
|
* | Add a similar test for rich comparisons. | Guido van Rossum | 2001-09-18 | 1 | -1/+67 |
|
|
* | Hopefully fix 3-way comparisons. This unfortunately adds yet another | Guido van Rossum | 2001-09-18 | 1 | -0/+28 |
|
|
* | Test for the safety check in wrap_cmpfunc(). | Guido van Rossum | 2001-09-18 | 1 | -0/+15 |
|
|
* | PyObject_Dir(): Merge in __members__ and __methods__ too (if they exist, | Tim Peters | 2001-09-17 | 1 | -0/+8 |
|
|
* | Since we had a bug with multiplication of dynamic long subclasses, add a | Tim Peters | 2001-09-15 | 1 | -1/+6 |
|
|
* | A fix for SF bug #461546 (bug in long_mul). | Guido van Rossum | 2001-09-15 | 1 | -0/+13 |
|
|
* | Changed the dict implementation to take "string shortcuts" only when | Tim Peters | 2001-09-14 | 1 | -2/+36 |
|
|
* | Now that file objects are subclassable, you can get at the file constructor | Tim Peters | 2001-09-13 | 1 | -0/+42 |
|
|
* | Use the keyword form of file() instead of open() to create TESTFN. | Tim Peters | 2001-09-13 | 1 | -2/+2 |
|
|
* | Added simple tests of keyword arguments in the basic type constructors. | Tim Peters | 2001-09-13 | 1 | -0/+24 |
|
|
* | type_call(): Change in policy. The keyword args (if any) are now passed | Tim Peters | 2001-09-13 | 1 | -2/+13 |
|
|
* | SF bug [#460467] file objects should be subclassable. | Tim Peters | 2001-09-13 | 1 | -1/+48 |
|
|
* | Added subclass equality tests. Almost all of these are commented out now, | Tim Peters | 2001-09-12 | 1 | -0/+11 |
|
|
* | Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-12 | 1 | -0/+24 |
|
|
* | If interning an instance of a string subclass, intern a real string object | Tim Peters | 2001-09-12 | 1 | -0/+14 |
|
|
* | str_subtype_new, unicode_subtype_new: | Tim Peters | 2001-09-12 | 1 | -0/+10 |
|
|
* | More on bug 460020: disable many optimizations of unicode subclasses. | Tim Peters | 2001-09-12 | 1 | -2/+55 |
|
|
* | More bug 460020: lots of string optimizations inhibited for string | Tim Peters | 2001-09-12 | 1 | -2/+25 |
|
|
* | More bug 460020. Disable a number of long optimizations for long subclasses. | Tim Peters | 2001-09-11 | 1 | -0/+24 |
|
|
* | More bug 460020: when F is a subclass of float, disable the unary plus | Tim Peters | 2001-09-11 | 1 | -0/+1 |
|
|
* | More bug 460020. When I is a subclass of int, disable the +I(whatever), | Tim Peters | 2001-09-11 | 1 | -0/+5 |
|
|
* | The endless 460020 bug. | Tim Peters | 2001-09-11 | 1 | -0/+9 |
|
|