[Python-checkins] r66580 - python/trunk/Doc/library/json.rst

georg.brandl python-checkins at python.org
Wed Sep 24 11:47:55 CEST 2008


Author: georg.brandl
Date: Wed Sep 24 11:47:55 2008
New Revision: 66580

Log:
Indentation normalization.


Modified:
   python/trunk/Doc/library/json.rst

Modified: python/trunk/Doc/library/json.rst
==============================================================================
--- python/trunk/Doc/library/json.rst	(original)
+++ python/trunk/Doc/library/json.rst	Wed Sep 24 11:47:55 2008
@@ -371,9 +371,9 @@
             
          def default(self, o):
             try:
-               iterable = iter(o)
+                iterable = iter(o)
             except TypeError:
-               pass
+                pass
             else:
                 return list(iterable)
             return JSONEncoder.default(self, o)


More information about the Python-checkins mailing list