[pypy-commit] pypy default: fix ugly formatting

gutworth noreply at buildbot.pypy.org
Mon Feb 6 16:59:51 CET 2012


Author: Benjamin Peterson <benjamin at python.org>
Branch: 
Changeset: r52138:7e8d570f4490
Date: 2012-02-06 10:23 -0500
http://bitbucket.org/pypy/pypy/changeset/7e8d570f4490/

Log:	fix ugly formatting

diff --git a/pypy/interpreter/astcompiler/optimize.py b/pypy/interpreter/astcompiler/optimize.py
--- a/pypy/interpreter/astcompiler/optimize.py
+++ b/pypy/interpreter/astcompiler/optimize.py
@@ -302,8 +302,7 @@
                     # narrow builds will return a surrogate.  In both
                     # the cases skip the optimization in order to
                     # produce compatible pycs.
-                    if (self.space.isinstance_w(w_obj, self.space.w_unicode)
-                        and 
+                    if (self.space.isinstance_w(w_obj, self.space.w_unicode) and
                         self.space.isinstance_w(w_const, self.space.w_unicode)):
                         unistr = self.space.unicode_w(w_const)
                         if len(unistr) == 1:


More information about the pypy-commit mailing list