[pypy-commit] pypy translation-cleanup: Remove unused attribute FlowSpaceFrame.builtin

rlamy noreply at buildbot.pypy.org
Thu Aug 30 18:38:42 CEST 2012


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: translation-cleanup
Changeset: r57020:97892089f6d7
Date: 2012-08-27 18:31 +0200
http://bitbucket.org/pypy/pypy/changeset/97892089f6d7/

Log:	Remove unused attribute FlowSpaceFrame.builtin

diff --git a/pypy/objspace/flow/flowcontext.py b/pypy/objspace/flow/flowcontext.py
--- a/pypy/objspace/flow/flowcontext.py
+++ b/pypy/objspace/flow/flowcontext.py
@@ -334,8 +334,6 @@
         self.locals_stack_w = [None] * (code.co_nlocals + code.co_stacksize)
         self.valuestackdepth = code.co_nlocals
         self.lastblock = None
-        if space.config.objspace.honor__builtins__:
-            self.builtin = space.builtin.pick_builtin(w_globals)
 
         if func.func_closure is not None:
             cl = [c.cell_contents for c in func.func_closure]


More information about the pypy-commit mailing list