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.16:40:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1609692047.56.0.674000366147.issue42812@roundup.psfhosted.org>
In-reply-to
Content
To clarify, this is how it's being done now a dozen times in actual production code:

class Child(Parent):
    @overload foo(a, b): ...
    def overload(**kwargs):
        return super().foo(**kwargs)

The goal of this proposed enhancement is to remove two extra lines of code per Child class.
History
Date User Action Args
2021-01-03 16:40:47chaim422setrecipients: + chaim422, uriyyo
2021-01-03 16:40:47chaim422setmessageid: <1609692047.56.0.674000366147.issue42812@roundup.psfhosted.org>
2021-01-03 16:40:47chaim422linkissue42812 messages
2021-01-03 16:40:47chaim422create