6.20.1. Test 19: generic getoptions module

On-the-fly python test script follows.
Start python section from options.ipk
    47: from interscript import getoptions
    48: args = ['--longopt', '--longopt-value=value', '-short', '-shortval=val2','filename']
    49: result = getoptions.getopt(args)
    50: print result
End python section from options.ipk
Actual output follows.
Start output section of python <<temporary>>
     1: [([('longopt', None), ('longopt-value', 'value'), ('s', None), ('h', None), ('o', None), ('r', None), ('t', None), ('s', None), ('h', None), ('o', None), ('r', None), ('t', None), ('v', None), ('a', None), ('l', 'val2')], 'filename')]
End output section to python <<temporary>>