aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2010-05-19 23:32:24 +0000
committerDoug Evans <dje@google.com>2010-05-19 23:32:24 +0000
commit0bf0f8c4cd47073fe38adb1053787fe10d66b5d3 (patch)
tree3c69ce6210fb0075e1ac473d64bb7dd3a435a1b1 /gdb/python
parent3a1d4620d60dd678aa4d5a62f877caf0a5f209f1 (diff)
downloadgdb-0bf0f8c4cd47073fe38adb1053787fe10d66b5d3.zip
gdb-0bf0f8c4cd47073fe38adb1053787fe10d66b5d3.tar.gz
gdb-0bf0f8c4cd47073fe38adb1053787fe10d66b5d3.tar.bz2
* python.c (gdbpy_print_stack): Ensure output ends with a newline.
Diffstat (limited to 'gdb/python')
-rw-r--r--gdb/python/python.c8
1 files changed, 7 insertions, 1 deletions
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 ();
}