[issue40966] Remove redundant var in PyErr_NewException

2020-06-13 Thread hai shi
hai shi added the comment: Thanks, Dong-hee Na. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40966] Remove redundant var in PyErr_NewException

2020-06-13 Thread Dong-hee Na
Dong-hee Na added the comment: Merged! Thanks for the contribution! -- nosy: +corona10 resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue40966] Remove redundant var in PyErr_NewException

2020-06-12 Thread hai shi
Change by hai shi : -- keywords: +patch pull_requests: +20043 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20850 ___ Python tracker ___

[issue40966] Remove redundant var in PyErr_NewException

2020-06-12 Thread hai shi
New submission from hai shi : Looks like `classname` in PyErr_NewException() is redundant: https://github.com/python/cpython/blob/master/Python/errors.c#L1082 -- components: Interpreter Core messages: 371438 nosy: shihai1991 priority: normal severity: normal status: open title: Remove