Author: Manuel Jacob <[email protected]>
Branch: remove-remaining-smm
Changeset: r74112:219193ee464e
Date: 2014-10-23 13:55 +0200
http://bitbucket.org/pypy/pypy/changeset/219193ee464e/

Log:    Back out c0abbab51946.

diff --git a/pypy/tool/pytest/appsupport.py b/pypy/tool/pytest/appsupport.py
--- a/pypy/tool/pytest/appsupport.py
+++ b/pypy/tool/pytest/appsupport.py
@@ -130,13 +130,9 @@
     frame = None
 
     def __init__(self, space, tb):
-        self._frame = AppFrame(space, space.getattr(tb, 
space.wrap('tb_frame')))
+        self.frame = AppFrame(space, space.getattr(tb, space.wrap('tb_frame')))
         self.lineno = space.unwrap(space.getattr(tb, space.wrap('tb_lineno'))) 
- 1
 
-    @property
-    def frame(self):
-        return self._frame
-
     def reinterpret(self):
         # XXX we need to solve a general problem: how to prevent
         #     reinterpretation from generating a different exception?
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to