>>> test -a pathname
then can I use execfile to run test.py with these arguments. If so, what
syntax do I use?
Thank you
Reference manual says:
"execfile (file[, globals[, locals]])
This function is similar to the exec statement, but parses a file
instead of a string. It is different from the import statement in that
it does not use the module administration --- it reads the file
unconditionally and does not create a new module. (1)
The arguments are a file name and two optional dictionaries. The file is
parsed and evaluated as a sequence of Python statements (similarly to a
module) using the globals
and locals dictionaries as global and local name space. If the locals
dictionary is omitted it defaults to the globals dictionary. If both
dictionaries are omitted, the expression is executed in the environment
where execfile() is called. The return value is None."
which does not answer your question.
Wild guess:
import sys
sys.argv = ['test', '-a', 'pathname']
execfile('test')
will do what you want. Of course, you had better copy or extract any
info you need from original argv first.
TJ Reedy