You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most special methods (double underscored from both sizes) are only called with positional arguments. But some implementations forgot to add / in Argument Clinic description. It makes the code unnecessary complex and prevent using the efficient limited C API for it (Argument Clinic does not yet fully support the limited C API for keyword parameters).
We can just add missed /. No deprecation period is needed as these functions were not purposed to be used with keyword arguments.
Feature or enhancement
Has this already been discussed elsewhere?
No response given
Links to previous discussion of this feature:
No response
Proposal:
Most special methods (double underscored from both sizes) are only called with positional arguments. But some implementations forgot to add
/
in Argument Clinic description. It makes the code unnecessary complex and prevent using the efficient limited C API for it (Argument Clinic does not yet fully support the limited C API for keyword parameters).We can just add missed
/
. No deprecation period is needed as these functions were not purposed to be used with keyword arguments.Linked PRs
The text was updated successfully, but these errors were encountered: