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: Clean serveral unnecessary NULL checks in exceptions.c
Type: enhancement Stage: resolved
Components: Interpreter Core Versions: Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: martin.panter, python-dev, serhiy.storchaka, xiang.zhang
Priority: normal Keywords: patch

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

Files
File name Uploaded Description Edit
small_cleanup_exceptions.patch xiang.zhang, 2016-08-05 10:33 review
Messages (5)
msg272023 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2016-08-05 10:33
While studying exceptions.c, find several unnecessary NULL checks that can be removed.
msg272032 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-08-05 14:32
LGTM.
msg273219 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2016-08-20 15:39
Ping. :)
msg273236 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-08-20 18:22
New changeset 6e6aa2054824 by Serhiy Storchaka in branch 'default':
Issue #27692: Removed unnecessary NULL checks in exceptions.c.
https://hg.python.org/cpython/rev/6e6aa2054824
msg273237 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-08-20 18:23
Oh, I missed this issue.
History
Date User Action Args
2022-04-11 14:58:34adminsetgithub: 71879
2016-08-20 18:23:55serhiy.storchakasetstatus: open -> closed
resolution: fixed
messages: + msg273237

stage: commit review -> resolved
2016-08-20 18:22:49python-devsetnosy: + python-dev
messages: + msg273236
2016-08-20 15:39:27xiang.zhangsetmessages: + msg273219
2016-08-05 14:32:29serhiy.storchakasetmessages: + msg272032
stage: commit review
2016-08-05 10:33:46xiang.zhangcreate