summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-03-31 17:24:09 (GMT)
committerGuido van Rossum <guido@python.org>2000-03-31 17:24:09 (GMT)
commit2ea3e143f071344c3fb847faf33b5308e25bb5c5 (patch)
tree7d1ca488010ce129ff9c7f6b42334fd521c359c9 /Objects
parent68895ed70ce8e9c89d376df49dff4df57d490d1f (diff)
downloadcpython-2ea3e143f071344c3fb847faf33b5308e25bb5c5.zip
cpython-2ea3e143f071344c3fb847faf33b5308e25bb5c5.tar.gz
cpython-2ea3e143f071344c3fb847faf33b5308e25bb5c5.tar.bz2
Some blank lines.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/unicodeobject.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 8c1db7e..9c35e2d 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -1483,7 +1483,9 @@ PyObject *PyUnicode_AsASCIIString(PyObject *unicode)
}
#ifdef MS_WIN32
+
/* --- MBCS codecs for Windows -------------------------------------------- */
+
PyObject *PyUnicode_DecodeMBCS(const char *s,
int size,
const char *errors)
@@ -1536,6 +1538,7 @@ PyObject *PyUnicode_EncodeMBCS(const Py_UNICODE *p,
}
return repr;
}
+
#endif /* MS_WIN32 */
/* --- Character Mapping Codec -------------------------------------------- */