aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-01-10 21:26:39 +0000
committerTom Tromey <tromey@redhat.com>2012-01-10 21:26:39 +0000
commit065a711fc5e47237e62fbeca895a9d4c0c238cea (patch)
treed8c1b3b1302ad79d79487ce720bde42f30f910be /gdb/python
parentf3f5162ecf1ddce3645951814b439d49ade1153e (diff)
downloadgdb-065a711fc5e47237e62fbeca895a9d4c0c238cea.zip
gdb-065a711fc5e47237e62fbeca895a9d4c0c238cea.tar.gz
gdb-065a711fc5e47237e62fbeca895a9d4c0c238cea.tar.bz2
PR python/13199:
* python/python.c (finish_python_initialization): Set sys.argv.
Diffstat (limited to 'gdb/python')
-rw-r--r--gdb/python/python.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/python/python.c b/gdb/python/python.c
index 5212d4e..5a0d776 100644
--- a/gdb/python/python.c
+++ b/gdb/python/python.c
@@ -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);