add space

This commit is contained in:
Benjamin Peterson 2010-11-20 17:22:13 +00:00
parent 72288d4f3c
commit 5c41787f13

View file

@ -86,10 +86,10 @@ def getbases(self):
def test_isinstance_dont_mask_non_attribute_error(self):
class C(object):
def getclass(self):
raise RuntimeError()
__class__=property(getclass)
raise RuntimeError
__class__ = property(getclass)
c=C()
c = C()
self.assertRaises(RuntimeError, isinstance, c, bool)
# test another code path