Bug report
Here's how it looks now:

From this defitinion I undertand that I can pass value as a named keyword, but I can't:
>>>dict.fromkeys(x, value=0)
Traceback (mostrecentcalllast):
File"<stdin>", line1, in<module>TypeError: dict.fromkeys() takesnokeywordarguments
>>>importinspect>>>inspect.signature(dict.fromkeys)
<Signature (iterable, value=None, /)>
I just made this error in a real code: wemake-services/wemake-python-styleguide#2994
Many other definitions in this file use / to properly mark positional only parameters. Like:


and etc.
So, I will send a PR to add / to dict.fromkeys
Linked PRs
Bug report
Here's how it looks now:

From this defitinion I undertand that I can pass
valueas a named keyword, but I can't:I just made this error in a real code: wemake-services/wemake-python-styleguide#2994
Many other definitions in this file use


/to properly mark positional only parameters. Like:and etc.
So, I will send a PR to add
/todict.fromkeysLinked PRs
dict.fromkeysparams as pos-only #121197dict.fromkeysparams as pos-only (GH-121197) #121242dict.fromkeysparams as pos-only (GH-121197) #121243