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: Make makeunicode.py script more readable
Type: enhancement Stage: resolved
Components: Demos and Tools Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, scoder
Priority: low Keywords: patch

Created on 2019-05-11 07:08 by scoder, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 7558 merged scoder, 2019-05-11 07:08
Messages (1)
msg342171 - (view) Author: Stefan Behnel (scoder) * (Python committer) Date: 2019-05-11 07:08
The code generation in the makeunicode.py script is more difficult to read than necessary due to the many use of "print(file=fp)" everywhere. Moving the "file" argument out of the way makes it easier to read through the actual code that is being generated.
History
Date User Action Args
2022-04-11 14:59:15adminsetgithub: 81066
2019-06-01 19:50:43scodersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-05-11 07:28:50scodersettitle: Clean up makeunicode.py script -> Make makeunicode.py script more readable
2019-05-11 07:08:37scodersetkeywords: + patch
pull_requests: + pull_request13154
2019-05-11 07:08:11scodercreate