|
Server : Apache/2.2.2 (Fedora) System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686 User : apache ( 48) PHP Version : 5.2.9 Disable Function : NONE Directory : /usr/lib/pygtk/2.0/demos/ |
Upload File : |
import os
_file_list = [
x for x in os.listdir(os.path.dirname(__file__))
if len(x) > 3 and x[-3:] == '.py']
demo_list = []
for _mod in _file_list:
# Leave underscored Modulnames.
if _mod.startswith('_'):
continue
_mod = _mod[:-3]
try:
exec 'import ' + _mod + '\n' + \
'_doc = ' + _mod + '.__doc__'
_description = _doc.splitlines()[0]
demo_list.append((_description, _mod))
except (ImportError, AttributeError), msg:
# ImportError or AttributeError (if _doc is None)
#print 'failed: ', _mod
pass
demo_list.sort()