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: Remove redundant var in PyErr_NewException
Type: Stage: resolved
Components: Interpreter Core Versions: Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: corona10, shihai1991
Priority: normal Keywords: patch

Created on 2020-06-13 05:35 by shihai1991, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 20850 merged shihai1991, 2020-06-13 05:37
Messages (3)
msg371438 - (view) Author: Hai Shi (shihai1991) * (Python triager) Date: 2020-06-13 05:35
Looks like `classname` in PyErr_NewException() is redundant: https://github.com/python/cpython/blob/master/Python/errors.c#L1082
msg371440 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2020-06-13 06:59
Merged! Thanks for the contribution!
msg371444 - (view) Author: Hai Shi (shihai1991) * (Python triager) Date: 2020-06-13 08:50
Thanks, Dong-hee Na.
History
Date User Action Args
2022-04-11 14:59:32adminsetgithub: 85138
2020-06-13 08:50:13shihai1991setmessages: + msg371444
2020-06-13 06:59:11corona10setstatus: open -> closed

nosy: + corona10
messages: + msg371440

resolution: fixed
stage: patch review -> resolved
2020-06-13 05:37:25shihai1991setkeywords: + patch
stage: patch review
pull_requests: + pull_request20043
2020-06-13 05:35:23shihai1991create