summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-01-31 21:47:42 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-01-31 21:47:42 (GMT)
commitd17fec74e57af8d55ec67d9f165501326271a42e (patch)
tree8c922b231a5d1dafd9d471c655e9eaf63d5b7b9f
parentfb921e2c0034e00fcc75fa23358cab4c48f6d450 (diff)
downloadcpython-d17fec74e57af8d55ec67d9f165501326271a42e.zip
cpython-d17fec74e57af8d55ec67d9f165501326271a42e.tar.gz
cpython-d17fec74e57af8d55ec67d9f165501326271a42e.tar.bz2
fix indentation
-rw-r--r--Objects/unicodeobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 22f7202..7035f1e 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -1217,7 +1217,7 @@ PyObject *PyUnicode_AsEncodedObject(PyObject *unicode,
}
if (encoding == NULL)
- encoding = PyUnicode_GetDefaultEncoding();
+ encoding = PyUnicode_GetDefaultEncoding();
/* Encode via the codec registry */
v = PyCodec_Encode(unicode, encoding, errors);
@@ -1241,7 +1241,7 @@ PyObject *PyUnicode_AsEncodedString(PyObject *unicode,
}
if (encoding == NULL)
- encoding = PyUnicode_GetDefaultEncoding();
+ encoding = PyUnicode_GetDefaultEncoding();
/* Shortcuts for common default encodings */
if (errors == NULL) {