#11938: merge with 3.2.

This commit is contained in:
Ezio Melotti 2011-04-28 01:00:25 +03:00
commit 3c1d067ef9
1 changed files with 1 additions and 1 deletions

View File

@ -801,7 +801,7 @@ class TestGetattrStatic(unittest.TestCase):
thing = Thing()
self.assertEqual(inspect.getattr_static(thing, 'x'), Thing.x)
def test_descriptor(self):
def test_descriptor_raises_AttributeError(self):
class descriptor(object):
def __get__(*_):
raise AttributeError("I'm pretending not to exist")