PR python/13199:

* python/python.c (finish_python_initialization): Set sys.argv.
This commit is contained in:
Tom Tromey 2012-01-10 21:26:39 +00:00
parent f3f5162ecf
commit 065a711fc5
2 changed files with 8 additions and 0 deletions

View file

@ -1366,6 +1366,9 @@ def GdbSetPythonDirectory (dir):\n\
GdbSetPythonDirectory (gdb.PYTHONDIR)\n\
# Default prompt hook does nothing.\n\
prompt_hook = None\n\
# Ensure that sys.argv is set to something.\n\
# We do not use PySys_SetArgvEx because it did not appear until 2.6.6.\n\
sys.argv = ['']\n\
");
do_cleanups (cleanup);