[pypy-commit] pypy faster-json: make alex happier

fijal noreply at buildbot.pypy.org
Thu Oct 20 19:30:56 CEST 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: faster-json
Changeset: r48275:6c562364a3e2
Date: 2011-10-20 19:30 +0200
http://bitbucket.org/pypy/pypy/changeset/6c562364a3e2/

Log:	make alex happier

diff --git a/lib-python/modified-2.7/json/encoder.py b/lib-python/modified-2.7/json/encoder.py
--- a/lib-python/modified-2.7/json/encoder.py
+++ b/lib-python/modified-2.7/json/encoder.py
@@ -195,7 +195,7 @@
         self._encode(o, markers, builder, 0)
         return builder.build()
 
-    def _emit_indent(self, builder, _current_indent_level):        
+    def _emit_indent(self, builder, _current_indent_level):
         if self.indent is not None:
             _current_indent_level += 1
             newline_indent = '\n' + (' ' * (self.indent *


More information about the pypy-commit mailing list