summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
Commit message (Expand)AuthorAgeFilesLines
...
* Do the same thing to complex that I did to str: the rich comparisonGuido van Rossum2001-09-241-0/+15
* Change string comparison so that it applies even when one (or both)Guido van Rossum2001-09-241-6/+6
* Fix the baffler that Tim reported: sometimes the repr() of an objectGuido van Rossum2001-09-241-2/+2
* Add the __getattr__ hook back. The rules are now:Guido van Rossum2001-09-211-5/+4
* Change the name of the __getattr__ special method for new-styleGuido van Rossum2001-09-211-6/+6
* Add a small test to verify that member and getset descriptors now haveGuido van Rossum2001-09-201-0/+8
* Change testdescr.py to use the test_main() approach.Guido van Rossum2001-09-201-4/+4
* Add additional coercion support for "self subtypes" to int, long,Guido van Rossum2001-09-191-0/+28
* Enable two checks for comparing a complex to a complex subtypeGuido van Rossum2001-09-191-3/+4
* Enable some comparison tests that failed before. Still having problemsTim Peters2001-09-181-3/+3
* Add a similar test for rich comparisons.Guido van Rossum2001-09-181-1/+67
* Hopefully fix 3-way comparisons. This unfortunately adds yet anotherGuido van Rossum2001-09-181-0/+28
* Test for the safety check in wrap_cmpfunc().Guido van Rossum2001-09-181-0/+15
* PyObject_Dir(): Merge in __members__ and __methods__ too (if they exist,Tim Peters2001-09-171-0/+8
* Since we had a bug with multiplication of dynamic long subclasses, add aTim Peters2001-09-151-1/+6
* A fix for SF bug #461546 (bug in long_mul).Guido van Rossum2001-09-151-0/+13
* Changed the dict implementation to take "string shortcuts" only whenTim Peters2001-09-141-2/+36
* Now that file objects are subclassable, you can get at the file constructorTim Peters2001-09-131-0/+42
* Use the keyword form of file() instead of open() to create TESTFN.Tim Peters2001-09-131-2/+2
* Added simple tests of keyword arguments in the basic type constructors.Tim Peters2001-09-131-0/+24
* type_call(): Change in policy. The keyword args (if any) are now passedTim Peters2001-09-131-2/+13
* SF bug [#460467] file objects should be subclassable.Tim Peters2001-09-131-1/+48
* Added subclass equality tests. Almost all of these are commented out now,Tim Peters2001-09-121-0/+11
* Again perhaps the end of [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-121-0/+24
* If interning an instance of a string subclass, intern a real string objectTim Peters2001-09-121-0/+14
* str_subtype_new, unicode_subtype_new:Tim Peters2001-09-121-0/+10
* More on bug 460020: disable many optimizations of unicode subclasses.Tim Peters2001-09-121-2/+55
* More bug 460020: lots of string optimizations inhibited for stringTim Peters2001-09-121-2/+25
* More bug 460020. Disable a number of long optimizations for long subclasses.Tim Peters2001-09-111-0/+24
* More bug 460020: when F is a subclass of float, disable the unary plusTim Peters2001-09-111-0/+1
* More bug 460020. When I is a subclass of int, disable the +I(whatever),Tim Peters2001-09-111-0/+5
* The endless 460020 bug.Tim Peters2001-09-111-0/+9
* Restore the comparisons that I initially put in the test but that TimGuido van Rossum2001-09-111-6/+6
* Possibly the end of SF [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-111-2/+2
* Added another test of str() applied to a string subclass instance,Tim Peters2001-09-111-0/+4
* More on SF bug [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-111-1/+1
* More on SF bug [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-101-1/+1
* test_dir(): Add tests for dir(i) where i is a module subclass.Tim Peters2001-09-101-0/+23
* More for SF bug [#460020] bug or feature: unicode() and subclassesTim Peters2001-09-101-1/+1
* SF bug #460020: bug or feature: unicode() and subclasses.Tim Peters2001-09-101-0/+21
* Rename 'getset' to 'property'.Guido van Rossum2001-09-061-10/+10
* builtin_dir(): Treat classic classes like types. Use PyDict_Keys insteadTim Peters2001-09-041-10/+31
* Make dir() wordier (see the new docstring). The new behavior is a mixedTim Peters2001-09-031-0/+49
* Make dictionary() a real constructor. Accepts at most one argument, "aTim Peters2001-09-021-1/+51
* Correct name mangling algorithm, and add a comment.Guido van Rossum2001-08-311-2/+1
* metaclass(): add some more examples of metaclasses, including oneGuido van Rossum2001-08-301-0/+104
* Add testcases for inheritance from tricky builtins (numbers, strings,Guido van Rossum2001-08-301-0/+74
* Now that int is subclassable, have to change a test that tests forGuido van Rossum2001-08-291-2/+2
* Fix the test again due to fewer calls to __getattr__.Guido van Rossum2001-08-281-3/+1
* Fix one test to reflect the change in method lookup policy.Guido van Rossum2001-08-281-2/+1