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: Const args and remove unused args in Python/compile.c
Type: Stage: resolved
Components: Interpreter Core Versions:
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: Nosy List: petdance
Priority: normal Keywords: patch

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

Pull Requests
URL Status Linked Edit
PR 18837 closed petdance, 2020-03-08 03:56
Messages (2)
msg363632 - (view) Author: Andy Lester (petdance) * Date: 2020-03-08 03:53
Remove unused args from:
* binop
* compiler_next_instr
* inplace_binop

Const arguments for:
* assemble_jump_offsets
* blocksize
* check_caller
* check_compare
* check_index
* check_is_arg
* check_subscripter
* compiler_error
* compiler_new_block
* compiler_pop_fblock
* compiler_push_fblock
* compiler_warn
* compute_code_flags
* dfs
* find_ann
* get_ref_type
* merge_const_tuple
* stackdepth
msg363800 - (view) Author: Andy Lester (petdance) * Date: 2020-03-10 03:18
Replaced by https://bugs.python.org/issue39922
History
Date User Action Args
2022-04-11 14:59:27adminsetgithub: 84077
2020-03-10 03:18:43petdancesetstatus: open -> closed
resolution: rejected
messages: + msg363800

stage: patch review -> resolved
2020-03-08 03:56:43petdancesetkeywords: + patch
stage: patch review
pull_requests: + pull_request18194
2020-03-08 03:53:09petdancecreate