[pypy-svn] r17306 - pypy/dist/pypy/objspace/std

hpk at codespeak.net hpk at codespeak.net
Tue Sep 6 23:11:25 CEST 2005


Author: hpk
Date: Tue Sep  6 23:11:25 2005
New Revision: 17306

Modified:
   pypy/dist/pypy/objspace/std/listobject.py
Log:
remove leftover 'i'


Modified: pypy/dist/pypy/objspace/std/listobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/listobject.py	(original)
+++ pypy/dist/pypy/objspace/std/listobject.py	Tue Sep  6 23:11:25 2005
@@ -355,7 +355,6 @@
 
 def list_remove__List_ANY(space, w_list, w_any):
     # needs to be safe against eq_w() mutating the w_list behind our back
-    i = 0
     items = w_list.wrappeditems
     length = len(items)
     for i in range(length):



More information about the Pypy-commit mailing list