diff -Nurwb -x __pycache__ -x OWbuild -x '*.dll' -x '*.exe' Python-3.3.2-original/Modules/_io/textio.c Python-3.3.2/Modules/_io/textio.c --- Python-3.3.2-original/Modules/_io/textio.c 2013-09-18 20:54:10.000000000 -0400 +++ Python-3.3.2/Modules/_io/textio.c 2013-09-18 21:12:30.000000000 -0400 @@ -282,12 +282,12 @@ #define SEEN_ALL (SEEN_CR | SEEN_LF | SEEN_CRLF) PyObject * -_PyIncrementalNewlineDecoder_decode(PyObject *_self, +_PyIncrementalNewlineDecoder_decode(PyObject *myself, PyObject *input, int final) { PyObject *output; Py_ssize_t output_len; - nldecoder_object *self = (nldecoder_object *) _self; + nldecoder_object *self = (nldecoder_object *) myself; if (self->decoder == NULL) { PyErr_SetString(PyExc_ValueError,