Synopsis - Cross-Reference

File: /tests/Cxx-API/Python/src/Command.py
 1class Command:
 2
 3    def __init__(self, *args, **kwds):
 4
 5        print args
 6        print kwds
 7
 8    def execute(self):
 9        
10        print 'hello world'