diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-31 21:47:42 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-31 21:47:42 (GMT) |
commit | d17fec74e57af8d55ec67d9f165501326271a42e (patch) | |
tree | 8c922b231a5d1dafd9d471c655e9eaf63d5b7b9f /Objects | |
parent | fb921e2c0034e00fcc75fa23358cab4c48f6d450 (diff) | |
download | cpython-d17fec74e57af8d55ec67d9f165501326271a42e.zip cpython-d17fec74e57af8d55ec67d9f165501326271a42e.tar.gz cpython-d17fec74e57af8d55ec67d9f165501326271a42e.tar.bz2 |
fix indentation
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 4 |
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) { |