summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2016-02-22 17:15:14 +0100
committerJan Kratochvil <jan.kratochvil@redhat.com>2016-02-22 17:15:14 +0100
commitac46107c5c781894e013b10cd9fb5c98a8393d26 (patch)
tree90819f2962ee8ce36d73708c52da19fd898f4466
parent3b4dbbbf59aef4308bae6654bdc7968797504a3c (diff)
downloadbinutils-gdb-ac46107c5c781894e013b10cd9fb5c98a8393d26.tar.gz
gdb-gdb.py: SyntaxError: Missing parentheses in call to 'print'
After building GDB --with-python=/usr/bin/python3 and for example stripping ./gdb and running: ./gdb -data-directory data-directory/ -iex "add-auto-load-safe-path $PWD/gdb-gdb.gdb" -iex "add-auto-load-safe-path $PWD/gdb-gdb. py" ./gdb I get: Make breakpoint pending on future shared library load? (y or [n]) [answered N; input not from terminal] File "/home/jkratoch/redhat/gdb-test-python3/gdb/gdb-gdb.py", line 91 print "Warning: Cannot find enum type_flag_value type." ^ SyntaxError: Missing parentheses in call to 'print' (top-gdb) q gdb/ChangeLog 2016-02-22 Jan Kratochvil <jan.kratochvil@redhat.com> * gdb-gdb.py (class TypeFlagsPrinter): Use parentheses for print.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/gdb-gdb.py8
2 files changed, 8 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 92f1873e161..eac5e5c66a0 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2016-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
+
+ * gdb-gdb.py (class TypeFlagsPrinter): Use parentheses for print.
+
2016-02-22 Yao Qi <yao.qi@linaro.org>
* arm-tdep.c: Fix code format issues.
diff --git a/gdb/gdb-gdb.py b/gdb/gdb-gdb.py
index 4f3ac1ca370..9a12baf4b6b 100644
--- a/gdb/gdb-gdb.py
+++ b/gdb/gdb-gdb.py
@@ -88,14 +88,14 @@ class TypeFlagsPrinter:
try:
flags = gdb.lookup_type("enum type_flag_value")
except:
- print "Warning: Cannot find enum type_flag_value type."
- print " `struct type' pretty-printer will be degraded"
+ print("Warning: Cannot find enum type_flag_value type.")
+ print(" `struct type' pretty-printer will be degraded")
return
try:
iflags = gdb.lookup_type("enum type_instance_flag_value")
except:
- print "Warning: Cannot find enum type_instance_flag_value type."
- print " `struct type' pretty-printer will be degraded"
+ print("Warning: Cannot find enum type_instance_flag_value type.")
+ print(" `struct type' pretty-printer will be degraded")
return
# Note: TYPE_FLAG_MIN is a duplicate of TYPE_FLAG_UNSIGNED,
# so exclude it from the list we are building.