Issue 16126: PyErr_Format format mismatch in _testcapimodule.c (original) (raw)

Issue16126

Created on 2012-10-04 07:11 by serhiy.storchaka, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
testcapi_error_format_mismatch.patch serhiy.storchaka,2012-10-04 07:11 review
Messages (3)
msg171923 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2012-10-04 07:11
PyErr_Format in Modules/_testcapimodule.c uses illegal format specifier (%s) for Py_ssize_t argument. It causes crash: import _testcapi _testcapi.parse_tuple_and_keywords( (), {}, b'', [42])
msg171949 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-10-04 14:07
New changeset 0fc259ac8733 by Jesus Cea in branch '3.3': Closes #16126: PyErr_Format format mismatch in _testcapimodule.c http://hg.python.org/cpython/rev/0fc259ac8733 New changeset 366c19bb5ca2 by Jesus Cea in branch 'default': MERGE: Closes #16126: PyErr_Format format mismatch in _testcapimodule.c http://hg.python.org/cpython/rev/366c19bb5ca2
msg171950 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012-10-04 14:07
Thanks!.
History
Date User Action Args
2022-04-11 14:57:36 admin set github: 60330
2012-10-04 14:07:39 jcea set nosy: + jceamessages: +
2012-10-04 14:07:19 python-dev set status: open -> closednosy: + python-devmessages: + resolution: fixedstage: resolved
2012-10-04 07:11:10 serhiy.storchaka create