现在对于内置函数,pydev 只显示:
list.append Found at: builtins
而对于 matplotlib 中的函数,它显示:
def figure Found at: matplotlib.pyplot
def figure(num= # autoincrement if None, else integer from 1-N
None, figsize= # defaults to rc figure.figsize
None, dpi= # defaults to rc figure.dpi
None, facecolor= # defaults to rc figure.facecolor
None, edgecolor= # defaults to rc figure.edgecolor
None, frameon=True,
FigureClass=Figure, **
kwargs):
.....................
我已经在我的 linux 系统中安装了 python-docs 包,我该怎么做才能让它显示内置 python 函数的详细功能提示?