aboutsummaryrefslogtreecommitdiff
path: root/gdb/python/py-prettyprint.c
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2010-06-04 18:18:28 +0000
committerDoug Evans <dje@google.com>2010-06-04 18:18:28 +0000
commit967cf47793f3a66dd3f8637279fe6d891dd2de9f (patch)
tree2b4a8257ec0d430b6cbdec547f6ef52ca97e7ca0 /gdb/python/py-prettyprint.c
parent2dec564e9127282478f922bc9946248745c5b140 (diff)
downloadbinutils-967cf47793f3a66dd3f8637279fe6d891dd2de9f.zip
binutils-967cf47793f3a66dd3f8637279fe6d891dd2de9f.tar.gz
binutils-967cf47793f3a66dd3f8637279fe6d891dd2de9f.tar.bz2
Add support for enabling/disabling individual pretty-printers.
* python/py-prettyprint.c (search_pp_list): Skip disabled printers. * python/python-internal.h (gdbpy_enabled_cst): Declare. * python/python.c (gdbpy_enabled_cst): Define. (_initialize_python): Initialize gdbpy_enabled_cst. * NEWS: Add entry. doc/ * gdb.texinfo (Python API): New node `Disabling Pretty-Printers'. testsuite/ * gdb.python/py-prettyprint.exp: Add new test for enabled and disabled printers. * gdb.python/py-prettyprint.py (disable_lookup_function): New function. (enable_lookup_function): New function.
Diffstat (limited to 'gdb/python/py-prettyprint.c')
-rw-r--r--gdb/python/py-prettyprint.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/python/py-prettyprint.c b/gdb/python/py-prettyprint.c
index e678898..4d60c96 100644
--- a/gdb/python/py-prettyprint.c
+++ b/gdb/python/py-prettyprint.c
@@ -48,6 +48,11 @@ search_pp_list (PyObject *list, PyObject *value)
if (! function)
return NULL;
+ /* Skip if disabled. */
+ if (PyObject_HasAttr (function, gdbpy_enabled_cst)
+ && ! PyObject_IsTrue (PyObject_GetAttr (function, gdbpy_enabled_cst)))
+ continue;
+
printer = PyObject_CallFunctionObjArgs (function, value, NULL);
if (! printer)
return NULL;