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.

classification
Title: Spurious arguments to PyErr_Format in unicodeobject.c
Type: enhancement Stage: resolved
Components: Interpreter Core Versions: Python 3.7, Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ncoghlan, python-dev, serhiy.storchaka, xiang.zhang
Priority: normal Keywords: patch

Created on 2016-10-16 09:37 by xiang.zhang, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
spurious_argument.patch xiang.zhang, 2016-10-16 09:37 review
Messages (3)
msg278757 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2016-10-16 09:37
In unicodeobject.c, there are some spurious arguments to PyErr_Format as the patch shows.
msg278758 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-10-16 09:41
LGTM.
msg278784 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-10-16 22:42
New changeset cbe313cd1b55 by Benjamin Peterson in branch '3.5':
remove extra PyErr_Format arguments (closes #28454)
https://hg.python.org/cpython/rev/cbe313cd1b55

New changeset 738579b25d02 by Benjamin Peterson in branch '3.6':
merge 3.5 (#28454)
https://hg.python.org/cpython/rev/738579b25d02

New changeset b37db216c8e0 by Benjamin Peterson in branch 'default':
merge 3.6 (#28454)
https://hg.python.org/cpython/rev/b37db216c8e0
History
Date User Action Args
2022-04-11 14:58:38adminsetgithub: 72640
2016-10-16 22:42:56python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg278784

resolution: fixed
stage: commit review -> resolved
2016-10-16 09:41:21serhiy.storchakasetnosy: + serhiy.storchaka

messages: + msg278758
stage: patch review -> commit review
2016-10-16 09:37:12xiang.zhangcreate