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.

Author chaim422
Recipients chaim422, uriyyo
Date 2021-01-03.18:26:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1609698387.19.0.750228321522.issue42812@roundup.psfhosted.org>
In-reply-to
Content
Thanks for your perspective.

To summarize here is how my proposed enhancement might look in practice:

class Parent:
    def foo(self, **kwargs):
        """Argument names of foo vary depending on the child class."""


class Child(Parent):
    @overload
    def foo(self, a, b):
        pass
History
Date User Action Args
2021-01-03 18:26:27chaim422setrecipients: + chaim422, uriyyo
2021-01-03 18:26:27chaim422setmessageid: <1609698387.19.0.750228321522.issue42812@roundup.psfhosted.org>
2021-01-03 18:26:27chaim422linkissue42812 messages
2021-01-03 18:26:27chaim422create