[pypy-commit] pypy py3k: These SLICE opcodes don't exist anymore

amauryfa noreply at buildbot.pypy.org
Tue Oct 11 23:27:18 CEST 2011


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: py3k
Changeset: r47948:3cb89066c84a
Date: 2011-10-11 23:13 +0200
http://bitbucket.org/pypy/pypy/changeset/3cb89066c84a/

Log:	These SLICE opcodes don't exist anymore

diff --git a/pypy/tool/stdlib_opcode.py b/pypy/tool/stdlib_opcode.py
--- a/pypy/tool/stdlib_opcode.py
+++ b/pypy/tool/stdlib_opcode.py
@@ -88,9 +88,6 @@
         """NOT_RPYTHON. Add individual opcodes to the module constants."""
         g = globals()
         g.update(self.opmap)
-        g['SLICE'] = self.opmap["SLICE+0"]
-        g['STORE_SLICE'] = self.opmap["STORE_SLICE+0"]
-        g['DELETE_SLICE'] = self.opmap["DELETE_SLICE+0"]
 
     def __str__(self):
         return "<%s bytecode>" % (self.name,)


More information about the pypy-commit mailing list