[issue39922] Remove unused args in Python/compile.c

2020-03-11 Thread Andy Lester
Change by Andy Lester : -- pull_requests: -18300 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39922] Remove unused args in Python/compile.c

2020-03-11 Thread Andy Lester
Change by Andy Lester : -- pull_requests: +18300 pull_request: https://github.com/python/cpython/pull/18949 ___ Python tracker ___

[issue39922] Remove unused args in Python/compile.c

2020-03-10 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 76d5877b72cbe66eb3b6d8caa8d19f89a938ada2 by Andy Lester in branch 'master': closes bpo-39922: Remove unused args from four functions. (GH-18893) https://github.com/python/cpython/commit/76d5877b72cbe66eb3b6d8caa8d19f89a938ada2 --

[issue39922] Remove unused args in Python/compile.c

2020-03-10 Thread Andy Lester
Andy Lester added the comment: Sorry about the noise. I will do that. Yes, I have a bunch more to submit. -- ___ Python tracker ___

[issue39922] Remove unused args in Python/compile.c

2020-03-10 Thread Batuhan Taskaya
Batuhan Taskaya added the comment: IMHO if you are going to proceed with this kind of issues, it would be cool to create a meta issue and post updates/link PRs to it. You are creating an extra (and unnecessary) traffic in the "new bugs announce" list. -- nosy: +Batuhan Taskaya

[issue39922] Remove unused args in Python/compile.c

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

[issue39922] Remove unused args in Python/compile.c

2020-03-09 Thread Andy Lester
New submission from Andy Lester : These functions have unnecessary args that can be removed: * binop * compiler_add_o * compiler_next_instr * inplace_binop -- components: Interpreter Core messages: 363799 nosy: petdance priority: normal severity: normal status: open title: Remove