[pypy-svn] pypy default: Remove attribute on PyFrame which is never used anywhere.

alex_gaynor commits-noreply at bitbucket.org
Mon Jan 17 06:15:25 CET 2011


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: 
Changeset: r40741:41b2f9ae3625
Date: 2011-01-16 23:15 -0600
http://bitbucket.org/pypy/pypy/changeset/41b2f9ae3625/

Log:	Remove attribute on PyFrame which is never used anywhere.

diff --git a/pypy/interpreter/pyframe.py b/pypy/interpreter/pyframe.py
--- a/pypy/interpreter/pyframe.py
+++ b/pypy/interpreter/pyframe.py
@@ -66,8 +66,6 @@
         self.fastlocals_w = [None]*self.numlocals
         make_sure_not_resized(self.fastlocals_w)
         self.f_lineno = code.co_firstlineno
-        # Keep from having to call space.wrap in a RuntimeError
-        self._recursion_error = space.wrap("maximum recursion depth exceeded")
 
     def append_block(self, block):
         block.previous = self.lastblock


More information about the Pypy-commit mailing list