##// END OF EJS Templates
Merge pull request #3632 from ivanov/no_sys_available...
Thomas Kluyver -
r11341:d1828aa7 merge
parent child Browse files
Show More
@@ -61,6 +61,11 b' This line is evaluated in Python, so simple expressions are allowed, e.g.::'
61 61 `--C.a='range(3)'` For setting C.a=[0,1,2].
62 62 """.strip() # trim newlines of front and back
63 63
64 # sys.argv can be missing, for example when python is embedded. See the docs
65 # for details: http://docs.python.org/2/c-api/intro.html#embedding-python
66 if not hasattr(sys, "argv"):
67 sys.argv = [""]
68
64 69 subcommand_description = """
65 70 Subcommands are launched as `{app} cmd [args]`. For information on using
66 71 subcommand 'cmd', do: `{app} cmd -h`.
General Comments 0
You need to be logged in to leave comments. Login now