[pypy-commit] pypy py3k: Fix pep 8 issue.

marky1991 pypy.commits at gmail.com
Tue May 3 11:41:25 EDT 2016


Author: Mark Young <marky1991 at gmail.com>
Branch: py3k
Changeset: r84171:6db07c7d7059
Date: 2016-05-02 06:53 -0400
http://bitbucket.org/pypy/pypy/changeset/6db07c7d7059/

Log:	Fix pep 8 issue.

diff --git a/pypy/module/itertools/test/test_itertools.py b/pypy/module/itertools/test/test_itertools.py
--- a/pypy/module/itertools/test/test_itertools.py
+++ b/pypy/module/itertools/test/test_itertools.py
@@ -198,7 +198,7 @@
             assert next(it) == x
         raises(StopIteration, next, it)
 
-        #Do not allow floats
+        # Do not allow floats
         raises(ValueError, itertools.islice, [1, 2, 3, 4, 5], 0.0, 3.0, 2.0)
 
         it = itertools.islice([1, 2, 3], 0, None)


More information about the pypy-commit mailing list