[Python-checkins] r84186 - python/branches/py3k/Objects/unicodeobject.c

victor.stinner python-checkins at python.org
Thu Aug 19 00:26:50 CEST 2010


Author: victor.stinner
Date: Thu Aug 19 00:26:50 2010
New Revision: 84186

Log:
Fix PyUnicode_EncodeFSDefault() indentation


Modified:
   python/branches/py3k/Objects/unicodeobject.c

Modified: python/branches/py3k/Objects/unicodeobject.c
==============================================================================
--- python/branches/py3k/Objects/unicodeobject.c	(original)
+++ python/branches/py3k/Objects/unicodeobject.c	Thu Aug 19 00:26:50 2010
@@ -1480,8 +1480,8 @@
                                          "surrogateescape");
     } else
         return PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode),
-                                     PyUnicode_GET_SIZE(unicode),
-                                     "surrogateescape");
+                                    PyUnicode_GET_SIZE(unicode),
+                                    "surrogateescape");
 }
 
 PyObject *PyUnicode_AsEncodedString(PyObject *unicode,


More information about the Python-checkins mailing list