From 573daf741b7820d51d0620919d661e1b2671065a Mon Sep 17 00:00:00 2001 From: hpk Date: Mon, 8 Sep 2008 18:01:11 +0200 Subject: [PATCH] [svn r57979] fix 2.3 compat --HG-- branch : trunk --- py/code/testing/test_excinfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/code/testing/test_excinfo.py b/py/code/testing/test_excinfo.py index 349f6fa82..aaaca1c1b 100644 --- a/py/code/testing/test_excinfo.py +++ b/py/code/testing/test_excinfo.py @@ -325,9 +325,9 @@ raise ValueError() path = '?' firstlineno = 5 - @property def fullsource(self): raise fail + fullsource = property(fullsource) class FakeFrame(object): code = FakeCode()