[pypy-svn] r52077 - in pypy/branch/jit-refactoring/pypy/jit/tl: . test

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Mar 3 00:06:55 CET 2008


Author: cfbolz
Date: Mon Mar  3 00:06:54 2008
New Revision: 52077

Added:
   pypy/branch/jit-refactoring/pypy/jit/tl/tlopcode.py
      - copied unchanged from r52074, pypy/branch/jit-refactoring/pypy/jit/tl/opcode.py
Removed:
   pypy/branch/jit-refactoring/pypy/jit/tl/opcode.py
Modified:
   pypy/branch/jit-refactoring/pypy/jit/tl/test/test_tl.py
   pypy/branch/jit-refactoring/pypy/jit/tl/test/test_tlc.py
   pypy/branch/jit-refactoring/pypy/jit/tl/tl.py
   pypy/branch/jit-refactoring/pypy/jit/tl/tlc.py
Log:
rename the opcode.py file to not clash with a stdlib module


Modified: pypy/branch/jit-refactoring/pypy/jit/tl/test/test_tl.py
==============================================================================
--- pypy/branch/jit-refactoring/pypy/jit/tl/test/test_tl.py	(original)
+++ pypy/branch/jit-refactoring/pypy/jit/tl/test/test_tl.py	Mon Mar  3 00:06:54 2008
@@ -1,6 +1,6 @@
 import py
 import operator
-from pypy.jit.tl.opcode import *
+from pypy.jit.tl.tlopcode import *
 from pypy.jit.conftest import Benchmark
 
 from pypy.translator.c.test import test_boehm

Modified: pypy/branch/jit-refactoring/pypy/jit/tl/test/test_tlc.py
==============================================================================
--- pypy/branch/jit-refactoring/pypy/jit/tl/test/test_tlc.py	(original)
+++ pypy/branch/jit-refactoring/pypy/jit/tl/test/test_tlc.py	Mon Mar  3 00:06:54 2008
@@ -1,5 +1,5 @@
 import py
-from pypy.jit.tl.opcode import compile
+from pypy.jit.tl.tlopcode import compile
 from pypy.jit.tl.test import test_tl
 
 

Modified: pypy/branch/jit-refactoring/pypy/jit/tl/tl.py
==============================================================================
--- pypy/branch/jit-refactoring/pypy/jit/tl/tl.py	(original)
+++ pypy/branch/jit-refactoring/pypy/jit/tl/tl.py	Mon Mar  3 00:06:54 2008
@@ -1,7 +1,7 @@
 '''Toy Language'''
 
 import py
-from pypy.jit.tl.opcode import *
+from pypy.jit.tl.tlopcode import *
 from pypy.rlib.jit import hint
 
 def char2int(c):

Modified: pypy/branch/jit-refactoring/pypy/jit/tl/tlc.py
==============================================================================
--- pypy/branch/jit-refactoring/pypy/jit/tl/tlc.py	(original)
+++ pypy/branch/jit-refactoring/pypy/jit/tl/tlc.py	Mon Mar  3 00:06:54 2008
@@ -1,8 +1,8 @@
 '''Toy Language with Cons Cells'''
 
 import py
-from pypy.jit.tl.opcode import *
-from pypy.jit.tl import opcode as tlopcode
+from pypy.jit.tl.tlopcode import *
+from pypy.jit.tl import tlopcode
 from pypy.rlib.jit import hint
 
 class Obj(object):



More information about the Pypy-commit mailing list