pr195.py

来自「mallet是自然语言处理、机器学习领域的一个开源项目。」· Python 代码 · 共 12 行

PY
12
字号
# PR#195 -- inclusion of multiple copies of a method, due to interface# appearing multiple times in a hierarchy.from javax.swing import AbstractListModel, ComboBoxModel# Note that AbstractListModel implements ListModel, ComboBoxModel extends# ListModel.  This would cause JPython to include# (Object)ListModel.getElementAt(int) twice in the proxy class, which is# illegal.class Model(AbstractListModel, ComboBoxModel):    pass

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?