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: Remove unused args in Python/compile.c
Type: Stage: resolved
Components: Interpreter Core Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Batuhan Taskaya, benjamin.peterson, petdance
Priority: normal Keywords: patch

Created on 2020-03-10 03:17 by petdance, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 18893 merged petdance, 2020-03-10 03:26
Messages (4)
msg363799 - (view) Author: Andy Lester (petdance) * Date: 2020-03-10 03:17
These functions have unnecessary args that can be removed:

* binop
* compiler_add_o
* compiler_next_instr
* inplace_binop
msg363827 - (view) Author: Batuhan Taskaya (Batuhan Taskaya) Date: 2020-03-10 16:08
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.
msg363828 - (view) Author: Andy Lester (petdance) * Date: 2020-03-10 16:12
Sorry about the noise.  I will do that.  Yes, I have a bunch more to submit.
msg363878 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2020-03-11 02:18
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
History
Date User Action Args
2022-04-11 14:59:27adminsetgithub: 84103
2020-03-12 03:47:49petdancesetpull_requests: - pull_request18300
2020-03-12 03:44:59petdancesetpull_requests: + pull_request18300
2020-03-11 02:18:16benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg363878

resolution: fixed
stage: patch review -> resolved
2020-03-10 16:12:21petdancesetmessages: + msg363828
2020-03-10 16:08:45Batuhan Taskayasetnosy: + Batuhan Taskaya
messages: + msg363827
2020-03-10 03:26:56petdancesetkeywords: + patch
stage: patch review
pull_requests: + pull_request18250
2020-03-10 03:17:44petdancecreate