I think your changed constructor:

class Car:
    def __init__(self, manufacturer, variant):
        self.brand = manufacturer
        self.model = variant

is a particularly good example, and the PEP should specify whether: 
    Car("Chrysler", "PT Cruiser")

is matched by:
    Car(brand="Chrysler", mod:=model)
or:
    Car(manufacturer="Chrysler", mod:=variant)
or both, or possibly even Frankenstein combinations like:
    Car(brand="Chrysler", mod:=variant)

-jJ
_______________________________________________
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/HBHBYOG56E75ET732WM7ZBDRTWGBVA25/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to