Allow identifiers as keyword arguments at function call site (extension of PEP 3102?)

Systemverilog has a similar feature. It is called “implicit port connection” there. Its syntax is dot. f(.a, .b, c=z).

I think this feature can make Python code a lot less verbose when applicable. I would then be more inclined to use keyword arguments instead of positional arguments. This can make Python code safer.