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/formatter_unicode.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 17:06 by petdance, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 18810 closed petdance, 2020-03-06 17:09
PR 18822 merged petdance, 2020-03-07 05:00
Messages (2)
msg363525 - (view) Author: Andy Lester (petdance) * Date: 2020-03-06 17:06
The following functions have unused args:

calc_number_widths -> PyObject *number

fill_number -> Py_ssize_t d_end
msg363606 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2020-03-07 17:29
New changeset ad0c775ea24bb827410f01ece9f191309292bb95 by Andy Lester in branch 'master':
closes bpo-39878: Remove unused arguments from static functions. (GH-18822)
https://github.com/python/cpython/commit/ad0c775ea24bb827410f01ece9f191309292bb95
History
Date User Action Args
2022-04-11 14:59:27adminsetgithub: 84059
2020-03-07 17:29:14benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg363606

resolution: fixed
stage: patch review -> resolved
2020-03-07 05:00:35petdancesetpull_requests: + pull_request18181
2020-03-06 17:09:54petdancesetkeywords: + patch
stage: patch review
pull_requests: + pull_request18168
2020-03-06 17:06:48petdancecreate