On Fri, 23 Oct 2020 at 09:39, Steven D'Aprano <steve@pearwood.info> wrote:
Using PEP 634 syntax, I could write:


    def method(self, **kwargs):
        {'spam': spam, 'eggs': eggs, **kw} = **kwargs
        process(spam, eggs)
        super().method(**kw)

I like that.