Message231315
PyObject_REPR.patch: the first part looks good to me. For the second part, you can use PySys_FormatStderr() which is more complex but more correct: it formats the string as Unicode and then encode it to stderr encoding. PyUnicode_FromFormatV() is probably safer to handle errors.
You may use PySys_FormatStderr() in the two functions to write context, and then call Py_FatalError with a simple message. The exact formatting doesn't matter much, these cases must never occur :-) An assertion may be enough :-p |
|
| Date |
User |
Action |
Args |
| 2014-11-18 12:19:25 | vstinner | set | recipients:
+ vstinner, Chris.Colbert, serhiy.storchaka |
| 2014-11-18 12:19:25 | vstinner | set | messageid: <[email protected]> |
| 2014-11-18 12:19:25 | vstinner | link | issue22453 messages |
| 2014-11-18 12:19:23 | vstinner | create | |
|