summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* supers(): typo -- "if verify" should be "if verbose".Guido van Rossum2001-08-241-1/+1
* Add test suite for super().Guido van Rossum2001-08-241-0/+32
* Add a test for the new getset type.Guido van Rossum2001-08-241-0/+24
* Add test for weak references.Guido van Rossum2001-08-171-3/+33
* classic(),metods(): add tests to verify that a bound method without aGuido van Rossum2001-08-171-0/+2
* classic(), methods(): add another test relating to unbound methods:Guido van Rossum2001-08-171-0/+6
* Add early binding of methods to the 2nd metaclass example.Guido van Rossum2001-08-171-1/+6
* metaclass(): add tests for metaclasses written in Python: one thatGuido van Rossum2001-08-171-0/+33
* classobject.c:instancemethod_descr_get(): when a bound method isGuido van Rossum2001-08-161-1/+1
* test_descr started breaking in yet another way in the same place.Tim Peters2001-08-161-2/+6
* Repair some accidents causing Windows failures:Tim Peters2001-08-161-4/+4
* Add tests for overridable operators that have default interpretationsGuido van Rossum2001-08-151-0/+127
* Add a test to verify that bound methods work correctly.Guido van Rossum2001-08-151-0/+18
* Add a test for a weird bug I just discovered: a dynamic subclassGuido van Rossum2001-08-141-0/+5
* - Expand test for dynamic objects.Guido van Rossum2001-08-121-21/+33
* dynamics(): add tests for dynamic *instances* (which are currentlyGuido van Rossum2001-08-121-1/+20
* Add test for SF bug #442833 (multiple inheritance).Guido van Rossum2001-08-101-0/+14
* Allow AttributeError as well as TypeError for attribute-less objects.Guido van Rossum2001-08-101-1/+1
* Restore the test for 'object' that I removed when object wasGuido van Rossum2001-08-091-0/+24
* Remove the test for the 'object' type -- it can no longer beGuido van Rossum2001-08-071-24/+0
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-0/+829