summaryrefslogtreecommitdiff
path: root/configs/sim/axis/remap/getting-started/python/oword.py
blob: e470d1456169777712dbad7c86e3905149656beb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from util import call_pydevd

def foo(*args):
    print "foo!"


# make debugger available as oword procedure
def pydevd(self,*args):
    call_pydevd()



# this would be defined in the oword module
def mysub(self, *args):
    print "number of parameters passed:", len(args)
    for a in args:
	print a