summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
Commit message (Expand)AuthorAgeFilesLines
* Fix for SF bug ##497426: can't deepcopy recursive new objectsGuido van Rossum2001-12-281-1/+10
* (Merge into trunk.)Guido van Rossum2001-12-141-0/+10
* Additional coverage tests by Neil Norwitz.Guido van Rossum2001-12-111-0/+66
* SF bug #488514: -Qnew needs workTim Peters2001-12-061-0/+5
* Fix SF bug #489581: __slots__ leak.Guido van Rossum2001-12-051-0/+34
* At the PythonLabs meeting someone mentioned it would make Jim reallyGuido van Rossum2001-12-051-6/+1
* Fix SF bug #486144: Uninitialized __slot__ vrbl is None.Guido van Rossum2001-12-041-5/+7
* Fix of SF bug #475877 (Mutable subtype instances are hashable).Guido van Rossum2001-12-031-0/+24
* Address SF patch #480716 as well as related issues.Guido van Rossum2001-12-031-1/+51
* - Change all remaining assertions into verify() and vereq() calls.Guido van Rossum2001-11-241-14/+42
* More simple test cases for mixed classic+new multiple inheritance.Tim Peters2001-11-141-0/+35
* Changing diapers reminded Guido that he wanted to allow for some measureTim Peters2001-11-141-8/+47
* Fix bad bug in structseq slicing (NULL pointers in result). Reported byTim Peters2001-10-301-5/+1
* To cover a recent checkin, added a test to ensure dir(None) == dir(Ellipsis).Tim Peters2001-10-301-0/+4
* Just changed some continued-line indentation to read better, due toTim Peters2001-10-301-3/+3
* Minimal test for __del__ hook.Guido van Rossum2001-10-301-0/+12
* Rename "dictionary" (type and constructor) to "dict".Tim Peters2001-10-291-36/+36
* dictionary() constructor:Tim Peters2001-10-271-4/+4
* dict_constructor(): The last test was passing for the wrong reason (itTim Peters2001-10-261-1/+1
* Generalize dictionary() to accept a sequence of 2-sequences. At theTim Peters2001-10-261-8/+43
* Allow assignment to newinstance.__dict__.Guido van Rossum2001-10-261-0/+26
* Fixed denial-of-weak-ref-support test; Jeremy changed the error messageFred Drake2001-10-221-1/+1
* Methods of built-in types now properly check for keyword argumentsGuido van Rossum2001-10-221-0/+9
* Fix SF bug #472234: type(obj) calls type->tp_init (Roeland Rengelink)Guido van Rossum2001-10-181-0/+12
* SF bug [#468061] __str__ ignored in str subclass.Tim Peters2001-10-161-0/+31
* Completely get rid of __dynamic__ and the correspondingGuido van Rossum2001-10-151-53/+21
* SF bug [#470040] ParseTuple t# vs subclasses.Tim Peters2001-10-121-1/+32
* Another step in the right direction: when a new class's attributeGuido van Rossum2001-10-111-16/+79
* Add a bunch of tests for a list subclass that would have caught theGuido van Rossum2001-10-091-0/+22
* It turned out not so difficult to support old-style numbers (thoseGuido van Rossum2001-10-091-5/+6
* Change all occurrences of verify(x == y) into vereq(x, y), since whenGuido van Rossum2001-10-081-374/+376
* class_docstrings(): The new-style class tests should use new-styleTim Peters2001-10-041-4/+4
* SF bug [#467331] ClassType.__doc__ always None.Tim Peters2001-10-041-1/+34
* dynamics(): add a dummy __getattr__ method to the C class so that theGuido van Rossum2001-10-031-0/+5
* pickles():Guido van Rossum2001-10-021-18/+22
* Add a few ``__dynamic__ = 0'' lines in classes that need to preserveGuido van Rossum2001-09-291-3/+7
* It's a fact: for binary operators, *under certain circumstances*,Guido van Rossum2001-09-281-1/+36
* Changes to copy() and deepcopy() in copy.py to support __reduce__ as aGuido van Rossum2001-09-281-1/+43
* - Provisional support for pickling new-style objects. (*)Guido van Rossum2001-09-251-1/+62
* Make __class__ assignment possible, when the object structures are theGuido van Rossum2001-09-251-0/+28
* Make properties discoverable from Python:Tim Peters2001-09-241-2/+28
* Another comparison patch-up: comparing a type with a dynamic metatypeGuido van Rossum2001-09-241-0/+7
* 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