From 0bf0f8c4cd47073fe38adb1053787fe10d66b5d3 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Wed, 19 May 2010 23:32:24 +0000 Subject: * python.c (gdbpy_print_stack): Ensure output ends with a newline. --- gdb/python/python.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'gdb/python/python.c') diff --git a/gdb/python/python.c b/gdb/python/python.c index 9c1e8bd..3110328 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -416,7 +416,13 @@ void gdbpy_print_stack (void) { if (gdbpy_should_print_stack) - PyErr_Print (); + { + PyErr_Print (); + /* PyErr_Print doesn't necessarily end output with a newline. + This works because Python's stdout/stderr is fed through + printf_filtered. */ + begin_line (); + } else PyErr_Clear (); } -- cgit v1.1