[issue39261] Dead assignment in pyinit_config

2020-01-08 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 2c7ed417a4c758f1c3f97fcbca70a49f79e58c07 by Benjamin Peterson (Alex Henrie) in branch 'master': closes bpo-39261: Remove dead assignment from pyinit_config. (GH-17907) https://github.com/python/cpython/commit/2c7ed417a4c758f1c3f97fcbca70a49f7

[issue39261] Dead assignment in pyinit_config

2020-01-08 Thread Alex Henrie
Change by Alex Henrie : -- type: -> performance ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue39261] Dead assignment in pyinit_config

2020-01-08 Thread Alex Henrie
Change by Alex Henrie : -- versions: +Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue39261] Dead assignment in pyinit_config

2020-01-08 Thread Alex Henrie
Change by Alex Henrie : -- keywords: +patch pull_requests: +17318 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17907 ___ Python tracker ___

[issue39261] Dead assignment in pyinit_config

2020-01-08 Thread Alex Henrie
New submission from Alex Henrie : The function pyinit_config currently contains the following line: config = &tstate->interp->config; However, the config variable is not used after that point. Victor Stinner has confirmed that this assignment is unnecessary: https://github.com/python/cpy