https://github.com/python/cpython/commit/943e57e1ceae074064d20faaeae2c5edc6b3e631 commit: 943e57e1ceae074064d20faaeae2c5edc6b3e631 branch: 3.13 author: Bénédikt Tran <[email protected]> committer: vstinner <[email protected]> date: 2024-12-02T13:24:03+01:00 summary:
[3.13] Fix Unicode encode_wstr_utf8() (#127420) (#127505) Fix Unicode encode_wstr_utf8() (#127420) Raise RuntimeError instead of RuntimeWarning. Co-authored-by: Victor Stinner <[email protected]> files: M Objects/unicodeobject.c diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index c69a64de062baa..7ea058b9730b4c 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -15633,7 +15633,7 @@ encode_wstr_utf8(wchar_t *wstr, char **str, const char *name) int res; res = _Py_EncodeUTF8Ex(wstr, str, NULL, NULL, 1, _Py_ERROR_STRICT); if (res == -2) { - PyErr_Format(PyExc_RuntimeWarning, "cannot decode %s", name); + PyErr_Format(PyExc_RuntimeError, "cannot encode %s", name); return -1; } if (res < 0) { _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
