如何从 Cython 方法描述符中获取参数名称和 __annotations__?

How to get argument names and __annotations__ from Cython method descriptor?

如果我在 cdef class 中定义方法,方法没有任何关于参数和注释的信息:

Python class:

class MyClass:
   def test(self, arg: int):
      pass
print(dir(MyClass.test))

['__annotations__', '__call__', '__class__', '__closure__', '__code__', '__defaults__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__get__', '__getattribute__', '__globals__', '__gt__', '__hash__', '__init__', '__kwdefaults__', '__le__', '__lt__', '__module__', '__name__', '__ne__', '__new__', '__qualname__', '__reduce__', '__reduce_ex__', '__repr__', '__self__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'func_closure', 'func_code', 'func_defaults', 'func_dict', 'func_doc', 'func_globals', 'func_name']

Cython class:

cdef class MyClass:
   def test(self, arg: int):
      pass
print(dir(MyClass.test))
['__call__', '__class__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__get__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__name__', '__ne__', '__new__', '__objclass__', '__qualname__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__text_signature__']

是否有任何方法可以从 Cython 方法中获取带有注释的 argumnets?

P.S。 Cython 的 class 方法类型不是方法:<class 'method_descriptor'>,不是 <class 'cython_function_or_method'>

根据 Cython github 存储库上的 this issue,添加了注释,但仅用于 cdef 函数:

%%cython
def test2(arg: int): pass
cpdef test1(arg: int): pass
cdef test(arg: int): pass

print(['__annotations__' in dir(i) for i in [test2, test1, test]])
[False, False, True]

除此之外,__annotations__ 只是 returns 一个空字典。注释似乎只在生成 C 代码时使用(尚未验证),并不意味着对用户可用。