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

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

Pull Requests
URL Status Linked Edit
PR 18800 merged petdance, 2020-03-06 06:54
Messages (3)
msg363486 - (view) Author: Andy Lester (petdance) * Date: 2020-03-06 06:31
These four functions have unused arguments that can be removed:

symtable_exit_block -> void *ast

symtable_visit_annotations -> stmt_ty s

symtable_exit_block -> void *ast

symtable_visit_annotations -> stmt_ty s

PR is forthcoming.
msg363488 - (view) Author: Andy Lester (petdance) * Date: 2020-03-06 06:43
Two functions. It's only two functions.
msg363523 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2020-03-06 15:46
New changeset 9566842e892c1f600e1dcfadaab4643be8f32901 by Andy Lester in branch 'master':
closes bpo-39872: Remove unused args from symtable_exit_block and symtable_visit_annotations. (GH-18800)
https://github.com/python/cpython/commit/9566842e892c1f600e1dcfadaab4643be8f32901
History
Date User Action Args
2022-04-11 14:59:27adminsetgithub: 84053
2020-03-06 15:46:10benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg363523

resolution: fixed
stage: patch review -> resolved
2020-03-06 06:54:13petdancesetkeywords: + patch
stage: patch review
pull_requests: + pull_request18156
2020-03-06 06:43:29petdancesetmessages: + msg363488
title: Remove unused args from four functions in Python/symtable.c -> Remove unused args from two functions in Python/symtable.c
2020-03-06 06:31:52petdancecreate