[pypy-commit] pypy default: #966 -- removed a line of dead code, thanks to mikefc for the patch

alex_gaynor noreply at buildbot.pypy.org
Sun Dec 18 15:31:18 CET 2011


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: 
Changeset: r50653:29b9e8df6ade
Date: 2011-12-18 08:30 -0600
http://bitbucket.org/pypy/pypy/changeset/29b9e8df6ade/

Log:	#966 -- removed a line of dead code, thanks to mikefc for the patch

diff --git a/pypy/module/micronumpy/app_numpy.py b/pypy/module/micronumpy/app_numpy.py
--- a/pypy/module/micronumpy/app_numpy.py
+++ b/pypy/module/micronumpy/app_numpy.py
@@ -53,7 +53,6 @@
     i = start
     for j in range(arr.size):
         arr[j] = i
-        j += 1
         i += step
     return arr
 


More information about the pypy-commit mailing list