[pypy-svn] r69858 - pypy/branch/listcopyop/pypy/rpython/memory/gctransform

fijal at codespeak.net fijal at codespeak.net
Thu Dec 3 11:23:45 CET 2009


Author: fijal
Date: Thu Dec  3 11:23:44 2009
New Revision: 69858

Modified:
   pypy/branch/listcopyop/pypy/rpython/memory/gctransform/transform.py
Log:
oops, fix import


Modified: pypy/branch/listcopyop/pypy/rpython/memory/gctransform/transform.py
==============================================================================
--- pypy/branch/listcopyop/pypy/rpython/memory/gctransform/transform.py	(original)
+++ pypy/branch/listcopyop/pypy/rpython/memory/gctransform/transform.py	Thu Dec  3 11:23:44 2009
@@ -5,7 +5,7 @@
 from pypy.translator.unsimplify import insert_empty_block
 from pypy.translator.unsimplify import insert_empty_startblock
 from pypy.translator.unsimplify import starts_with_empty_block
-from pypy.translator.backendopt.support import var_needsgc, ll_listcopy
+from pypy.translator.backendopt.support import var_needsgc
 from pypy.translator.backendopt import inline
 from pypy.translator.backendopt import graphanalyze
 from pypy.translator.backendopt.canraise import RaiseAnalyzer
@@ -14,7 +14,7 @@
 from pypy.annotation import model as annmodel
 from pypy.rpython import rmodel
 from pypy.rpython.memory import gc
-from pypy.rpython.memory.gctransform.support import var_ispyobj
+from pypy.rpython.memory.gctransform.support import var_ispyobj, ll_listcopy
 from pypy.rpython.annlowlevel import MixLevelHelperAnnotator
 from pypy.rpython.rtyper import LowLevelOpList
 from pypy.rpython.rbuiltin import gen_cast



More information about the Pypy-commit mailing list