blob: a67b27c399ee7e5f426cc151ad9fd0ebb19e86a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
python
def option_pyfirst(context):
print "In --pyfirst (from %s)" % context
def option_pysecond(context, val):
print "In --pysecond=%s (from %s)" % (val, context)
--pyfirst
--pysecond Hey
test reg
In --pyfirst (from $sourcepath/test/baseline/feat-option_py.test)
In --pysecond=Hey (from $sourcepath/test/baseline/feat-option_py.test)
end test
|