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

fijal at codespeak.net fijal at codespeak.net
Thu Dec 3 19:18:53 CET 2009


Author: fijal
Date: Thu Dec  3 19:18:52 2009
New Revision: 69876

Modified:
   pypy/branch/listcopyop/pypy/rpython/memory/gctransform/support.py
Log:
Kill unused helper


Modified: pypy/branch/listcopyop/pypy/rpython/memory/gctransform/support.py
==============================================================================
--- pypy/branch/listcopyop/pypy/rpython/memory/gctransform/support.py	(original)
+++ pypy/branch/listcopyop/pypy/rpython/memory/gctransform/support.py	Thu Dec  3 19:18:52 2009
@@ -107,10 +107,3 @@
             os.write(2, "a destructor raised an exception, ignoring it\n")
         except:
             pass
-
- at specialize.arglltype(0)
-def ll_listcopy(source, dest, source_start, dest_start, length):
-    i = 0
-    while i < length:
-        dest[i + dest_start] = source[i + source_start]
-        i += 1



More information about the Pypy-commit mailing list