[issue39886] Remove unused arg in config_get_stdio_errors in Python/initconfig.c

2020-03-07 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset aa450a0364b6160be7dd61ec2d378abb0652f014 by Andy Lester in branch 'master': closes bpo-39886: Remove unused arg from config_get_stdio_errors. (GH-18823) https://github.com/python/cpython/commit/aa450a0364b6160be7dd61ec2d378abb0652f014 -

[issue39886] Remove unused arg in config_get_stdio_errors in Python/initconfig.c

2020-03-06 Thread Andy Lester
Change by Andy Lester : -- keywords: +patch pull_requests: +18182 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18823 ___ Python tracker ___

[issue39886] Remove unused arg in config_get_stdio_errors in Python/initconfig.c

2020-03-06 Thread Andy Lester
New submission from Andy Lester : config_get_stdio_errors(const PyConfig *config) does not use its arg. Delete it. -- components: Interpreter Core messages: 363582 nosy: petdance priority: normal severity: normal status: open title: Remove unused arg in config_get_stdio_errors in Pyth