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 arg from append_formattedvalue in Python/ast_unparse.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-08 04:14 by petdance, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 18840 merged petdance, 2020-03-08 04:16
Messages (2)
msg363634 - (view) Author: Andy Lester (petdance) * Date: 2020-03-08 04:14
append_formattedvalue() has an unused bool is_format_spec.
msg363668 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2020-03-08 16:54
New changeset 28ca43b7e30e2eaa2997c3becd8b1a837484ae5c by Andy Lester in branch 'master':
closes bpo-39898: Remove unused arg from append_formattedvalue. (GH-18840)
https://github.com/python/cpython/commit/28ca43b7e30e2eaa2997c3becd8b1a837484ae5c
History
Date User Action Args
2022-04-11 14:59:27adminsetgithub: 84079
2020-03-08 16:54:05benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg363668

resolution: fixed
stage: patch review -> resolved
2020-03-08 04:16:55petdancesetkeywords: + patch
stage: patch review
pull_requests: + pull_request18197
2020-03-08 04:14:26petdancecreate