[pypy-commit] pypy default: kill unused opcode_method_names

rlamy noreply at buildbot.pypy.org
Sun May 4 18:41:30 CEST 2014


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: 
Changeset: r71261:6681c9f6226c
Date: 2014-05-04 17:40 +0100
http://bitbucket.org/pypy/pypy/changeset/6681c9f6226c/

Log:	kill unused opcode_method_names

diff --git a/rpython/flowspace/flowcontext.py b/rpython/flowspace/flowcontext.py
--- a/rpython/flowspace/flowcontext.py
+++ b/rpython/flowspace/flowcontext.py
@@ -7,7 +7,6 @@
 import __builtin__
 
 from rpython.tool.error import source_lines
-from rpython.tool.stdlib_opcode import host_bytecode_spec
 from rpython.rlib import rstackovf
 from rpython.flowspace.argument import CallSpec
 from rpython.flowspace.model import (Constant, Variable, Block, Link,
@@ -305,8 +304,6 @@
     ]
 
 class FlowContext(object):
-    opcode_method_names = host_bytecode_spec.method_names
-
     def __init__(self, graph, code):
         self.graph = graph
         func = graph.func


More information about the pypy-commit mailing list