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: Port core types to Argument Clinic
Type: enhancement Stage: patch review
Components: Interpreter Core Versions: Python 3.11
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: arhadthedev
Priority: normal Keywords: patch

Created on 2022-03-07 14:12 by arhadthedev, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 31725 open arhadthedev, 2022-03-07 14:13
Messages (1)
msg414670 - (view) Author: Oleg Iarygin (arhadthedev) * Date: 2022-03-07 14:12
This is done to:

- update docstrings to current standards enforced by AC
- get proper naming for arguments of impl-functions (for example, self instead of obj and instance)
- strip boilerplate reducing current 16k lines of code to something little more manageable
- get a proper excuse to collapse overbloated PyTypeObject initializers by throwing out zeroes with designated initialization thanks to C99&11 being promoted. For example, EncodingMapType in unicodeobject.c reduced from 43 lines to 8, five times less.
History
Date User Action Args
2022-04-11 14:59:57adminsetgithub: 91102
2022-03-07 14:13:12arhadthedevsetkeywords: + patch
stage: patch review
pull_requests: + pull_request29841
2022-03-07 14:12:29arhadthedevcreate