summaryrefslogtreecommitdiff
path: root/Lib/test/test_descr.py
Commit message (Expand)AuthorAgeFilesLines
* merge 3.2 (#14699)Benjamin Peterson2012-05-011-46/+152
|\
| * merge 3.2 (#14658)Benjamin Peterson2012-04-241-46/+152
| |\
| | * Issue #14386: Expose the dict_proxy internal type as types.MappingProxyTypeVictor Stinner2012-04-161-2/+2
| | * correctly lookup __trunc__ in int() constructorBenjamin Peterson2012-03-201-0/+1
| | * make extra arguments to object.__init__/__new__ to errors in most cases (fini...Benjamin Peterson2012-03-171-0/+20
| | * merge 3.2 (#14334)Benjamin Peterson2012-03-161-46/+131
| | |\
| | | * Close #14199: _PyType_Lookup() and super_getattro() keep a strong reference toVictor Stinner2012-03-091-1/+29
| | | * merge 3.2 (#3787e896dbe9)Benjamin Peterson2012-03-071-2/+17
| | | |\
| | | * | Close #14095: type.__new__() doesn't remove __qualname__ key from the classVictor Stinner2012-02-251-3/+13
| | | * | initialize __dict__ if neededBenjamin Peterson2012-02-191-0/+2
| | | * | allow arbitrary attributes on classmethod and staticmethod (closes #14051)Benjamin Peterson2012-02-191-0/+13
| | | * | Issue #13577: various kinds of descriptors now have a __qualname__ attribute.Antoine Pitrou2011-12-121-0/+18
| | | * | PEP 3155 / issue #13448: Qualified name for classes and functions.Antoine Pitrou2011-11-251-3/+8
| | | * | Merge issue 1294232 patch from 3.2Nick Coghlan2011-10-231-29/+48
| | | |\ \
| | | | * | make __doc__ mutable on heaptypes (closes #12773)Benjamin Peterson2011-08-171-0/+13
| | | | * | improve test nameBenjamin Peterson2011-08-171-1/+1
| | | | * | complain when a class variable shadows a name in __slots__ (closes #12766)Benjamin Peterson2011-08-161-0/+8
| | | | * | Issue 12647: Add __bool__() method to the None object.Raymond Hettinger2011-07-281-3/+0
| | | | * | Issue #11603: Fix a crash when __str__ is rebound as __repr__.Antoine Pitrou2011-07-151-6/+7
| | | | |\ \
| | | | | * | excellent place for assertRaisesBenjamin Peterson2011-05-241-6/+1
| | | | | * | merge 3.2Benjamin Peterson2011-05-231-0/+6
| | | | | |\ \
| | | | | | * \ (Merge 3.2) Issue #9756: When calling a method descriptor or a slot wrapperVictor Stinner2011-05-011-0/+16
| | | | | | |\ \
| | | | | | * \ \ #11565: Merge with 3.2.Ezio Melotti2011-03-161-0/+6
| | | | | | |\ \ \
| | | | | | | * \ \ #11515: Merge with 3.2.Ezio Melotti2011-03-151-0/+6
| | | | | | | |\ \ \
| | | | | | | | * | | Issue #10992: make tests pass when run under coverage.Brett Cannon2011-02-221-0/+6
* | | | | | | | | | | fix calling the classmethod descriptor directly (closes #14699)Benjamin Peterson2012-05-011-0/+16
|/ / / / / / / / / /
* | | | | | | | | | don't use a slot wrapper from a different special method (closes #14658)Benjamin Peterson2012-04-241-1/+9
|/ / / / / / / / /
* | | | | | | | | check to make sure the attribute is a string (#14334)Benjamin Peterson2012-03-161-0/+3
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | allow cycles throught the __dict__ slot to be cleared (closes #1469629)Benjamin Peterson2012-03-071-2/+17
* | | | | | | | Fix use of deprecated assert_ method.Georg Brandl2012-02-201-2/+2
* | | | | | | | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-201-73/+247
|\ \ \ \ \ \ \ \ | |/ / / / / / /
| * | | | | | | Issue 1294232: Fix errors in metaclass calculation affecting some cases of me...Nick Coghlan2011-10-231-0/+168
| |/ / / / / /
| * | | | | | Issue #11603: Fix a crash when __str__ is rebound as __repr__.Antoine Pitrou2011-07-151-73/+79
| |\ \ \ \ \ \ | | |/ / / / /
| | * | | | | merge 3.1Benjamin Peterson2011-05-231-73/+79
| | |\ \ \ \ \ | | | | |_|_|/ | | | |/| | |
| | | * | | | (Merge 3.1) Issue #9756: When calling a method descriptor or a slot wrapperVictor Stinner2011-05-011-73/+79
| | | |\ \ \ \ | | | | |/ / /
| | | | * | | #11565: Merge with 3.1.Ezio Melotti2011-03-161-73/+79
| | | | |\ \ \ | | | | | |/ /
| | | | | * | #11515: Merge with 3.1.Ezio Melotti2011-03-151-1/+1
| | | | | |\ \ | | | | | | |/ | | | | | |/|
| | | | | * | don't segfault on deleting __abstractmethods__ #10892Benjamin Peterson2011-01-121-1/+5
| | | | | * | oops, wrong classBenjamin Peterson2011-01-121-7/+7
| | | | | * | move this test to test_descr; it's not abc specificBenjamin Peterson2011-01-121-0/+7
| | | | | * | #5587: add a repr to dict_proxy objects. Patch by David Stanek and Daniel Ur...Ezio Melotti2010-12-181-0/+5
| | | | | * | return views from dict proxy items/values/keys #10630Benjamin Peterson2010-12-071-5/+11
| | | | | * | #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-4/+4
| | | | | * | Issue #9930: Remove an unnecessary type check in wrap_binaryfunc_r;Mark Dickinson2010-09-231-0/+5
| | | | | * | fix lookup of __ceil__Benjamin Peterson2010-07-021-0/+1
| | | | | * | correctly lookup __trunc__ and __floor__Benjamin Peterson2010-07-011-0/+3
| | | | | * | Merged revisions 81706-81707 via svnmerge fromBenjamin Peterson2010-06-051-0/+3
| | | | | * | (partially)Florent Xicluna2010-04-021-1/+0
| | | | | * | Merged revisions 77952,78030,78102,78104,78107,78206,78216,78296-78297,78328,...Benjamin Peterson2010-03-211-0/+9
| | | | | * | Merged revisions 78093 via svnmerge fromGeorg Brandl2010-03-141-8/+1