summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2007-08-30 15:30:09 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2007-08-30 15:30:09 (GMT)
commit8757878b12c540f7b2b66738860e3433bb0d7302 (patch)
tree27cdd57ed3b592f52e6febdf8d58b40d526dce3c /Objects
parent7f626f4c349cc2b27e227c39d0410a8d07912458 (diff)
downloadcpython-8757878b12c540f7b2b66738860e3433bb0d7302.zip
cpython-8757878b12c540f7b2b66738860e3433bb0d7302.tar.gz
cpython-8757878b12c540f7b2b66738860e3433bb0d7302.tar.bz2
Rewrap line.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/unicodeobject.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index db1e43d..f54e7b2 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -795,7 +795,8 @@ int PyUnicode_SetDefaultEncoding(const char *encoding)
static
int unicode_decode_call_errorhandler(const char *errors, PyObject **errorHandler,
const char *encoding, const char *reason,
- const char *input, Py_ssize_t insize, Py_ssize_t *startinpos, Py_ssize_t *endinpos, PyObject **exceptionObject, const char **inptr,
+ const char *input, Py_ssize_t insize, Py_ssize_t *startinpos,
+ Py_ssize_t *endinpos, PyObject **exceptionObject, const char **inptr,
PyObject **output, Py_ssize_t *outpos, Py_UNICODE **outptr)
{
static char *argparse = "O!n;decoding error handler must return (unicode, int) tuple";