Author: Andrews Medina <[email protected]>
Branch: 
Changeset: r394:cdfd44c86dcb
Date: 2013-05-20 10:54 -0300
http://bitbucket.org/pypy/lang-js/changeset/cdfd44c86dcb/

Log:    removed unused counter.

diff --git a/js/builtins/array.py b/js/builtins/array.py
--- a/js/builtins/array.py
+++ b/js/builtins/array.py
@@ -59,10 +59,8 @@
 
     n = []
 
-    i = 0
     for k in xrange(from_index, to_index):
         n.append(o.get(unicode(str(k))))
-        i += 1
 
     return _w(n)
 
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to