Menu

[r15]: / trunk / getlist.py  Maximize  Restore  History

Download this file

18 lines (10 with data), 264 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
from excel_com import excel_com
import inspect
#Example of usage for excel_class
def main():
mlist=inspect.getmembers(excel_com, predicate=inspect.ismethod)
for item in mlist:
print item[0]
if __name__=="__main__":
main()
exit(0)