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: Simplify exception handling code in py_compile
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.11
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: Nosy List: iritkatriel
Priority: normal Keywords: patch

Created on 2022-01-24 19:17 by iritkatriel, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 30857 closed iritkatriel, 2022-01-24 19:20
Messages (1)
msg411509 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2022-01-24 19:17
PyCompileError takes both type and value of the exception, which is no longer necessary. Fortunately neither its constructor signature nor its fields are documented so it can be simplified.
History
Date User Action Args
2022-04-11 14:59:55adminsetgithub: 90663
2022-01-26 13:50:59iritkatrielsetstatus: open -> closed
resolution: wont fix
stage: patch review -> resolved
2022-01-24 19:58:25iritkatrielsettype: enhancement
components: + Library (Lib)
versions: + Python 3.11
2022-01-24 19:20:08iritkatrielsetkeywords: + patch
stage: patch review
pull_requests: + pull_request29039
2022-01-24 19:17:50iritkatrielcreate