[issue29793] Convert some builtin types constructors to Argument Clinic

2017-03-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: 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

[issue29793] Convert some builtin types constructors to Argument Clinic

2017-03-19 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue29793] Convert some builtin types constructors to Argument Clinic

2017-03-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: str, bytes and bytearray still are not converted. -- ___ Python tracker ___

[issue29793] Convert some builtin types constructors to Argument Clinic

2017-03-11 Thread STINNER Victor
STINNER Victor added the comment: Cool. You can close my issue, this one supersed it. -- ___ Python tracker ___

[issue29793] Convert some builtin types constructors to Argument Clinic

2017-03-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic nosy: +larry stage: -> patch review ___ Python tracker ___

[issue29793] Convert some builtin types constructors to Argument Clinic

2017-03-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +508 ___ Python tracker ___ ___

[issue29793] Convert some builtin types constructors to Argument Clinic

2017-03-11 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: 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__ -- components: Interpreter Core messages: