14 lines
291 B
Text
14 lines
291 B
Text
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 $FILE)
|
|
In --pysecond=Hey (from $FILE)
|
|
end test
|