Message 285657 - Python tracker
This issue is blocking me to convert more functions to Argument Clinic. See for example attached getattr_ac.patch which converts getattr() to AC. Without ac_optional_positional.patch, AC generates the signature: "getattr($module, object, name, default=None, /)\n" whereas the following signature is expected: "getattr($module, object, name[, default])\n"