[issue30469] Inconsistent Execution of Generic Descriptor Attributes
Ryan Morshead added the comment: Is there a reason that `call_method` is not used in `slot_tp_descr_get` -- ___ Python tracker <http://bugs.python.org/issue30
[issue30469] Inconsistent Execution of Generic Descriptor Attributes
New submission from Ryan Morshead: When the `__get__`, `__set__`, or `__delete__` attribute of a descriptor is not a method, and is instead a generic callable, the first argument of that callable is inconsistent: class Callable(object): def __call__(self, first, *args, **kwargs