Мое первое предложение
Используйте встроенные функции python для внутреннего анализа
import pgu.gui.List
import inspect
help(pgu.gui.List) # to read out the doc strings
print dir(pgu.gui.List) # to get the namespace of List class
# to get all methods of that class
all_functions = inspect.getmembers(pgu.gui.List, inspect.isfunction)
Всегда смотрите на исходный код, когда он доступен
Из кода: Вы можете создать и очистить список.
<code>class List(ScrollArea):
"""A list of items in an area.
<p>This widget can be a form element, it has a value set to whatever item is selected.</p>
<pre>List(width,height)
"" ".... def clear (self): "" "Очистить список.
List.clear()
"" "...
Использование:
# Create the actual widget
usagelist = gui.List(width, height)