[pypy-svn] pypy default: Small formatting fixes.

alex_gaynor commits-noreply at bitbucket.org
Mon Jan 24 22:59:00 CET 2011


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: 
Changeset: r41271:0c7bf5409eba
Date: 2011-01-24 16:58 -0500
http://bitbucket.org/pypy/pypy/changeset/0c7bf5409eba/

Log:	Small formatting fixes.

diff --git a/pypy/objspace/std/test/test_complexobject.py b/pypy/objspace/std/test/test_complexobject.py
--- a/pypy/objspace/std/test/test_complexobject.py
+++ b/pypy/objspace/std/test/test_complexobject.py
@@ -39,9 +39,9 @@
         test_cparse('.e+5', '.e+5', '0.0')
         test_cparse('(1+2j)', '1', '2')
         test_cparse('(1-6j)', '1', '-6')
-        test_cparse(' ( +3.14-6J )','+3.14','-6')
-        test_cparse(' +J','0.0','1.0')
-        test_cparse(' -J','0.0','-1.0')
+        test_cparse(' ( +3.14-6J )', '+3.14', '-6')
+        test_cparse(' +J', '0.0', '1.0')
+        test_cparse(' -J', '0.0', '-1.0')
 
     def test_unpackcomplex(self):
         space = self.space


More information about the Pypy-commit mailing list