[pypy-commit] pypy py3.6: kill dead global

cfbolz pypy.commits at gmail.com
Fri Feb 22 11:03:52 EST 2019


Author: Carl Friedrich Bolz-Tereick <cfbolz at gmx.de>
Branch: py3.6
Changeset: r96127:18e9ae494869
Date: 2019-02-21 21:55 +0100
http://bitbucket.org/pypy/pypy/changeset/18e9ae494869/

Log:	kill dead global

diff --git a/pypy/interpreter/pyframe.py b/pypy/interpreter/pyframe.py
--- a/pypy/interpreter/pyframe.py
+++ b/pypy/interpreter/pyframe.py
@@ -25,7 +25,6 @@
 for op in '''DUP_TOP POP_TOP SETUP_LOOP SETUP_EXCEPT SETUP_FINALLY SETUP_WITH
 SETUP_ASYNC_WITH POP_BLOCK END_FINALLY'''.split():
     globals()[op] = stdlib_opcode.opmap[op]
-HAVE_ARGUMENT = stdlib_opcode.HAVE_ARGUMENT
 
 class FrameDebugData(object):
     """ A small object that holds debug data for tracing


More information about the pypy-commit mailing list