From: Benjamin Peterson Date: Sat, 20 Nov 2010 17:22:13 +0000 (+0000) Subject: add space X-Git-Tag: v3.2b1~298 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5c41787f13bbf26741ad2a7bee97d4d83fed0d43;p=thirdparty%2FPython%2Fcpython.git add space --- diff --git a/Lib/test/test_isinstance.py b/Lib/test/test_isinstance.py index 50920c56560b..dc2d07467aa7 100644 --- a/Lib/test/test_isinstance.py +++ b/Lib/test/test_isinstance.py @@ -86,10 +86,10 @@ class TestIsInstanceExceptions(unittest.TestCase): 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