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: Convert some builtin types constructors to Argument Clinic
Type: enhancement Stage: resolved
Components: Argument Clinic, Interpreter Core Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: larry, serhiy.storchaka, vstinner
Priority: normal Keywords:

Created on 2017-03-11 13:46 by serhiy.storchaka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 615 merged serhiy.storchaka, 2017-03-11 13:52
Messages (4)
msg289446 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-03-11 13:46
Following PR converts some builtin types constructors to Argument Clinic:

complex.__new__
float.__new__
function.__new__
int.__new__
mappingproxy.__new__
module.__init__
property.__init__
structseq.__new__
msg289451 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-03-11 18:42
Cool. You can close my issue, this one supersed it.
msg289453 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-03-11 18:45
str, bytes and bytearray still are not converted.
msg290162 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-03-24 22:08
New changeset 18b250f844bf8b2d1a81c2d2dcc74e850364fe35 by Serhiy Storchaka in branch 'master':
bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615)
https://github.com/python/cpython/commit/18b250f844bf8b2d1a81c2d2dcc74e850364fe35
History
Date User Action Args
2022-04-11 14:58:44adminsetgithub: 73979
2017-03-24 22:08:44serhiy.storchakasetmessages: + msg290162
2017-03-19 07:16:16serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2017-03-11 18:45:22serhiy.storchakasetmessages: + msg289453
2017-03-11 18:42:19vstinnersetmessages: + msg289451
2017-03-11 13:53:25serhiy.storchakasetnosy: + larry

components: + Argument Clinic
stage: patch review
2017-03-11 13:52:40serhiy.storchakasetpull_requests: + pull_request508
2017-03-11 13:46:33serhiy.storchakacreate