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 eli.bendersky
Recipients benjamin.peterson, docs@python, eli.bendersky, eric.araujo, pitrou, stutzbach, terry.reedy
Date 2011-07-16.09:04:02
SpamBayes Score 0.063436605
Marked as misclassified No
Message-id <1310807043.84.0.00492707140306.issue12434@psf.upfronthosting.co.za>
In-reply-to
Content
The difference between 2.6 and 2.7 stems from the rewrite of the IO library in C that was made for 2.7

The error Terry sees gets thrown here (in Modules/_io/stringio.c):

    if (!PyUnicode_Check(obj)) {
        PyErr_Format(PyExc_TypeError, "string argument expected, got '%s'",
                     Py_TYPE(obj)->tp_name);
        return NULL;
    }

Therefore, I propose to change this error message to:

"unicode argument expected, got '%s'"

as Terry suggested.

Adding Antoine, Benjamin and Daniel (listed as experts on IO) to nosy.

Is there an objection to making this change in the error message?
History
Date User Action Args
2011-07-16 09:04:03eli.benderskysetrecipients: + eli.bendersky, terry.reedy, pitrou, benjamin.peterson, stutzbach, eric.araujo, docs@python
2011-07-16 09:04:03eli.benderskysetmessageid: <1310807043.84.0.00492707140306.issue12434@psf.upfronthosting.co.za>
2011-07-16 09:04:03eli.benderskylinkissue12434 messages
2011-07-16 09:04:02eli.benderskycreate