This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients brian.curtin, loewis, pitrou, sable
Date 2011-11-24.14:39:45
SpamBayes Score 0.029983873
Marked as misclassified No
Message-id <1322145586.05.0.791333871303.issue13461@psf.upfronthosting.co.za>
In-reply-to
Content
What if you replace:

PyObject *decoded = PyObject_CallMethod(
            self->decoder, "decode", "s#", input, 1);

with:

PyObject *decoded = PyObject_CallMethod(
            self->decoder, "decode", "s#", input, (Py_ssize_t) 1);
History
Date User Action Args
2011-11-24 14:39:46pitrousetrecipients: + pitrou, loewis, sable, brian.curtin
2011-11-24 14:39:46pitrousetmessageid: <1322145586.05.0.791333871303.issue13461@psf.upfronthosting.co.za>
2011-11-24 14:39:45pitroulinkissue13461 messages
2011-11-24 14:39:45pitroucreate