diff options
author | Tom Tromey <tromey@redhat.com> | 2012-02-17 19:24:27 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-02-17 19:24:27 +0000 |
commit | 2e8265fd8b24634b3d5c9f47fae5fa0cd157714e (patch) | |
tree | db2d168d6872b28be60c9fe8f9994cb6c091e94b /gdb/python/python-internal.h | |
parent | 8544a1503d0764c676b1825e0f4024bfb1c0197d (diff) | |
download | gdb-2e8265fd8b24634b3d5c9f47fae5fa0cd157714e.zip gdb-2e8265fd8b24634b3d5c9f47fae5fa0cd157714e.tar.gz gdb-2e8265fd8b24634b3d5c9f47fae5fa0cd157714e.tar.bz2 |
PR python/12070:
* python/py-event.c (event_object_getset): New global.
(event_object_type): Reference it.
* python/py-type.c (field_object_getset): New global.
(field_object_type): Reference it.
* python/python-internal.h (gdb_py_generic_dict): Declare.
* python/py-utils.c (gdb_py_generic_dict): New function.
testsuite/gdb
* gdb.python/py-events.py (exit_handler): Add test for 'dir'.
* gdb.python/py-events.exp: Check 'dir' output.
* gdb.python/py-type.exp (test_fields): Add test for 'dir'.
Diffstat (limited to 'gdb/python/python-internal.h')
-rw-r--r-- | gdb/python/python-internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h index 1d6247d..bae61c2 100644 --- a/gdb/python/python-internal.h +++ b/gdb/python/python-internal.h @@ -342,4 +342,6 @@ PyObject *gdb_py_object_from_longest (LONGEST l); PyObject *gdb_py_object_from_ulongest (ULONGEST l); int gdb_py_int_as_long (PyObject *, long *); +PyObject *gdb_py_generic_dict (PyObject *self, void *closure); + #endif /* GDB_PYTHON_INTERNAL_H */ |