python 的一大优点是能够对方法和函数进行自省。例如,要获取math.log
您可以(在 ipython 中)运行的函数签名:
In [1]: math.log?
Type: builtin_function_or_method
Base Class: <type 'builtin_function_or_method'>
String Form: <built-in function log>
Namespace: Interactive
Docstring:
log(x[, base])
Return the logarithm of x to the given base.
If the base not specified, returns the natural logarithm (base e) of x.
并且看到x
和可选base
的是这个函数的参数。
使用新的 gtk3 和自动生成的 pygobject bindings,我可以在我尝试的所有示例中只获取(*args, **kwargs)
每个 gtk 方法的参数。
示例:Label.set_text需要一个字符串:
In [1]: from gi.repository import Gtk
In [2]: mylabel = Gtk.Label("hello")
In [3]: mylabel.set_text?
Type: instancemethod
Base Class: <type 'instancemethod'>
String Form: <bound method Label.set_text of <Label object at 0x275b230 (GtkLabel at 0x28cd040)>>
Namespace: Interactive
File: /usr/lib/python2.7/dist-packages/gi/types.py
Definition: L.set_text(*args, **kwargs)
Docstring:
<no docstring>
现在的问题:这(python 绑定的方法自省的丢失)是否会再次改变(文档)工作已经进入 pygobjects 或者由于 pygobjects 的工作方式而保留下来的东西?