123456789101112131415 |
- 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
|