[py-svn] r57979 - py/trunk/py/code/testing

hpk at codespeak.net hpk at codespeak.net
Mon Sep 8 18:01:13 CEST 2008


Author: hpk
Date: Mon Sep  8 18:01:11 2008
New Revision: 57979

Modified:
   py/trunk/py/code/testing/test_excinfo.py
Log:
fix 2.3 compat 


Modified: py/trunk/py/code/testing/test_excinfo.py
==============================================================================
--- py/trunk/py/code/testing/test_excinfo.py	(original)
+++ py/trunk/py/code/testing/test_excinfo.py	Mon Sep  8 18:01:11 2008
@@ -325,9 +325,9 @@
             path = '?'
             firstlineno = 5
 
-            @property
             def fullsource(self):
                 raise fail
+            fullsource = property(fullsource)
 
         class FakeFrame(object):
             code = FakeCode()



More information about the pytest-commit mailing list