From 065a711fc5e47237e62fbeca895a9d4c0c238cea Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 10 Jan 2012 21:26:39 +0000 Subject: PR python/13199: * python/python.c (finish_python_initialization): Set sys.argv. --- gdb/ChangeLog | 5 +++++ gdb/python/python.c | 3 +++ 2 files changed, 8 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 00405e5..1ac2510 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2012-01-10 Tom Tromey + + PR python/13199: + * python/python.c (finish_python_initialization): Set sys.argv. + 2012-01-10 Doug Evans * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg 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); -- cgit v1.1