| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Restore the comparisons that I initially put in the test but that Tim | Guido van Rossum | 2001-09-11 | 1 | -6/+6 |
|
|
* | Possibly the end of SF [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-11 | 1 | -2/+2 |
|
|
* | Added another test of str() applied to a string subclass instance, | Tim Peters | 2001-09-11 | 1 | -0/+4 |
|
|
* | More on SF bug [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-11 | 1 | -1/+1 |
|
|
* | More on SF bug [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 1 | -1/+1 |
|
|
* | test_dir(): Add tests for dir(i) where i is a module subclass. | Tim Peters | 2001-09-10 | 1 | -0/+23 |
|
|
* | More for SF bug [#460020] bug or feature: unicode() and subclasses | Tim Peters | 2001-09-10 | 1 | -1/+1 |
|
|
* | SF bug #460020: bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 1 | -0/+21 |
|
|
* | Rename 'getset' to 'property'. | Guido van Rossum | 2001-09-06 | 1 | -10/+10 |
|
|
* | builtin_dir(): Treat classic classes like types. Use PyDict_Keys instead | Tim Peters | 2001-09-04 | 1 | -10/+31 |
|
|
* | Make dir() wordier (see the new docstring). The new behavior is a mixed | Tim Peters | 2001-09-03 | 1 | -0/+49 |
|
|
* | Make dictionary() a real constructor. Accepts at most one argument, "a | Tim Peters | 2001-09-02 | 1 | -1/+51 |
|
|
* | Correct name mangling algorithm, and add a comment. | Guido van Rossum | 2001-08-31 | 1 | -2/+1 |
|
|
* | metaclass(): add some more examples of metaclasses, including one | Guido van Rossum | 2001-08-30 | 1 | -0/+104 |
|
|
* | Add testcases for inheritance from tricky builtins (numbers, strings, | Guido van Rossum | 2001-08-30 | 1 | -0/+74 |
|
|
* | Now that int is subclassable, have to change a test that tests for | Guido van Rossum | 2001-08-29 | 1 | -2/+2 |
|
|
* | Fix the test again due to fewer calls to __getattr__. | Guido van Rossum | 2001-08-28 | 1 | -3/+1 |
|
|
* | Fix one test to reflect the change in method lookup policy. | Guido van Rossum | 2001-08-28 | 1 | -2/+1 |
|
|
* | supers(): typo -- "if verify" should be "if verbose". | Guido van Rossum | 2001-08-24 | 1 | -1/+1 |
|
|
* | Add test suite for super(). | Guido van Rossum | 2001-08-24 | 1 | -0/+32 |
|
|
* | Add a test for the new getset type. | Guido van Rossum | 2001-08-24 | 1 | -0/+24 |
|
|
* | Add test for weak references. | Guido van Rossum | 2001-08-17 | 1 | -3/+33 |
|
|
* | classic(),metods(): add tests to verify that a bound method without a | Guido van Rossum | 2001-08-17 | 1 | -0/+2 |
|
|
* | classic(), methods(): add another test relating to unbound methods: | Guido van Rossum | 2001-08-17 | 1 | -0/+6 |
|
|
* | Add early binding of methods to the 2nd metaclass example. | Guido van Rossum | 2001-08-17 | 1 | -1/+6 |
|
|
* | metaclass(): add tests for metaclasses written in Python: one that | Guido van Rossum | 2001-08-17 | 1 | -0/+33 |
|
|
* | classobject.c:instancemethod_descr_get(): when a bound method is | Guido van Rossum | 2001-08-16 | 1 | -1/+1 |
|
|