[issue37116] Use PEP 570 syntax for positional-only parameters

2019-06-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Separate issues should be open for remaining cases. For example issue37163 is open for dataclasses.replace(). -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue37116] Use PEP 570 syntax for positional-only parameters

2019-06-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 142566c028720934325f0b7fe28680afd046e00f by Serhiy Storchaka in branch 'master': [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620) https://github.com/python/cpython/commit/142566c028720934325f0b7fe28680afd046e00f

[issue37116] Use PEP 570 syntax for positional-only parameters

2019-06-03 Thread STINNER Victor
STINNER Victor added the comment: > New changeset 2085bd0877e17ad4d98a4586d5eabb6faecbb190 by Serhiy Storchaka in > branch 'master': > bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) > https://github.com/python/cpython/commit/2085bd0877e17ad4d98a4586d5eabb6faecbb190

[issue37116] Use PEP 570 syntax for positional-only parameters

2019-06-03 Thread STINNER Victor
STINNER Victor added the comment: See also bpo-37134. -- nosy: +vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue37116] Use PEP 570 syntax for positional-only parameters

2019-06-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 2085bd0877e17ad4d98a4586d5eabb6faecbb190 by Serhiy Storchaka in branch 'master': bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) https://github.com/python/cpython/commit/2085bd0877e17ad4d98a4586d5eabb6faecbb190

[issue37116] Use PEP 570 syntax for positional-only parameters

2019-05-31 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +pablogsal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37116] Use PEP 570 syntax for positional-only parameters

2019-05-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +13586 pull_request: https://github.com/python/cpython/pull/12620 ___ Python tracker ___

[issue37116] Use PEP 570 syntax for positional-only parameters

2019-05-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +13585 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13700 ___ Python tracker

[issue37116] Use PEP 570 syntax for positional-only parameters

2019-05-31 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : Two PRs apply PEP 570 syntax to the existing code. PR 13700 contains only compatible changes and can be applied to 3.8. It removes existing *args or naming tricks and makes self and cls arguments positional-only (if needed). PR 12620 contains breaking