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: sys_displayhook_unencodable takes an unnecessary PyThreadState * argument
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 02:33 by petdance, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 18796 merged petdance, 2020-03-06 02:36
Messages (2)
msg363475 - (view) Author: Andy Lester (petdance) * Date: 2020-03-06 02:33
sys_displayhook_unencodable in Python/sysmodule.c doesn't need its first argument.  Remove it.
msg363479 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2020-03-06 04:34
New changeset da4d656e951b00580d135ae6345656ecedf9d8d4 by Andy Lester in branch 'master':
closes bpo-39870: Remove unused arg from sys_displayhook_unencodable. (GH-18796)
https://github.com/python/cpython/commit/da4d656e951b00580d135ae6345656ecedf9d8d4
History
Date User Action Args
2022-04-11 14:59:27adminsetgithub: 84051
2020-03-06 04:34:42benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg363479

resolution: fixed
stage: patch review -> resolved
2020-03-06 02:36:36petdancesetkeywords: + patch
stage: patch review
pull_requests: + pull_request18152
2020-03-06 02:33:57petdancesetcomponents: + Interpreter Core
2020-03-06 02:33:47petdancecreate