summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
Commit message (Expand)AuthorAgeFilesLines
* correctly handle descrs with __missing__Benjamin Peterson2009-05-271-2/+12
* add a SETUP_WITH opcodeBenjamin Peterson2009-05-251-5/+3
* handle errors from _PyObject_LookupSpecial when __get__ failsBenjamin Peterson2009-05-251-1/+17
* properly lookup __instancecheck__ and __subclasscheck__Benjamin Peterson2009-05-161-6/+17
* convert some more special methods to use _PyObject_LookupSpecialBenjamin Peterson2009-05-091-3/+15
* lookup __reversed__ correctly as a special methodBenjamin Peterson2009-05-091-0/+3
* fix this testBenjamin Peterson2009-05-081-4/+2
* add _PyObject_LookupSpecial to handle fetching special method lookupBenjamin Peterson2009-05-081-0/+52
* fix a segfault when setting __class__ in __del__ #5283Benjamin Peterson2009-04-251-0/+10
* move test to a more appropiate oneBenjamin Peterson2009-04-181-25/+30
* try to initalize all builtin types with PyType_Ready to avoid problems like #...Benjamin Peterson2009-04-181-0/+12
* apply the second part of #4242's patch; classify all the implementation detai...Benjamin Peterson2009-03-261-45/+109
* when __getattr__ is a descriptor, call it correctly; fixes #4230Benjamin Peterson2008-11-171-0/+40
* Fix one of the tests: it relied on being present in an "output test" inArmin Rigo2008-10-281-7/+3
* Issue 2235: Py3k warnings are now emitted for classes that will no longer inh...Nick Coghlan2008-08-111-0/+5
* Issue 2235: __hash__ is once again inherited by default, but inheritance can ...Nick Coghlan2008-07-151-0/+8
* Issue #2115: __slot__ attributes setting was 10x slower.Amaury Forgeot d'Arc2008-02-151-0/+18
* Rewrite test_descr as unittest, written for GHOP by Jeff Wheeler.Georg Brandl2008-02-021-4494/+4189
* Fix test67.py from issue #1303614.Guido van Rossum2008-01-241-0/+24
* Fi debug turd -- a call accidentally left out.Guido van Rossum2008-01-241-1/+1
* Fix the tests by restoring __import__. I think the test is still valid.Neal Norwitz2008-01-241-4/+6
* Turn three recently fixed crashers into regular tests.Guido van Rossum2008-01-231-1/+70
* Remove a straggling debugging print line.Brett Cannon2007-12-251-1/+0
* Actually execute the tests for the getter/setter/deleter tests on properties.Brett Cannon2007-12-251-7/+12
* I forgot to fix one occurence of new in test_descrChristian Heimes2007-11-271-1/+1
* Replaced import of the 'new' module with 'types' module and added a deprecati...Christian Heimes2007-11-271-1/+0
* Issue 1416. Add getter, setter, deleter methods to properties that can beGuido van Rossum2007-11-101-0/+65
* Fix a crasher where Python code managed to infinitely recurse in C code withoutBrett Cannon2007-09-071-1/+17
* Fix for #1303614 and #1174712:Armin Rigo2007-05-021-2/+78
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-251-2/+2
* Revert r53997 as perArmin Rigo2007-04-191-87/+61
* When __slots__ are set to a unicode string, make it work the same asNeal Norwitz2007-04-141-1/+17
* Fix warnings about object.__init__() signature.Guido van Rossum2007-04-021-1/+0
* Patch #1623563: allow __class__ assignment for classes with __slots__.Žiga Seilnacht2007-03-161-0/+45
* Patch #1680015: Don't modify __slots__ tuple if it contains an unicodeŽiga Seilnacht2007-03-141-0/+23
* Whitespace normalization.Tim Peters2007-03-121-2/+2
* Patch #1674228: when assigning a slice (old-style), check for theGeorg Brandl2007-03-051-0/+14
* Add checking for a number of metaclass error conditions.Jeremy Hylton2007-02-271-45/+103
* Fix the line to what is my guess at the original author's meaning.Armin Rigo2007-02-121-1/+1
* a test for an error condition not covered by existing testsMichael W. Hudson2006-11-231-0/+7
* Patch #1567691: super() and new.instancemethod() now don't acceptGeorg Brandl2006-09-301-0/+7
* Change fix for segfaulting property(), add a NEWS entry and a test.Georg Brandl2006-08-041-0/+10
* Put method-wrappers into trashcan. Fixes #927248.Martin v. Löwis2006-07-031-0/+8
* An object with __call__ as an attribute, when called, will have that attribut...Brett Cannon2006-06-091-0/+16
* (arre, arigo) SF bug #1350060Armin Rigo2006-06-081-1/+14
* subclasspropagation(): Squash two more bogus hash(x) == id(x)Tim Peters2006-04-111-2/+2
* specials(): squash another incorrect hash(x) == id(x)Tim Peters2006-04-111-1/+6
* Huh. This belonged with the last checkin -- no idea why svnTim Peters2006-04-111-1/+0
* Patch #1434038: property() now uses the getter's docstring if there isGeorg Brandl2006-03-081-0/+12
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-011-26/+0