diff options
author | Tom Tromey <tom@tromey.com> | 2016-11-20 11:16:41 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-01-10 19:14:08 -0700 |
commit | 8dbcee674ea4a8daa55f880ad7ade96efca96951 (patch) | |
tree | 8cb08ab11a952e36c83c0ba0de96c6b68d4e2108 /gdb/python/python-internal.h | |
parent | 13df46cc0f340253e8a7bd984d1e4f38f29eec2d (diff) | |
download | binutils-8dbcee674ea4a8daa55f880ad7ade96efca96951.zip binutils-8dbcee674ea4a8daa55f880ad7ade96efca96951.tar.gz binutils-8dbcee674ea4a8daa55f880ad7ade96efca96951.tar.bz2 |
Remove make_cleanup_py_decref and make_cleanup_py_xdecref
make_cleanup_py_decref and make_cleanup_py_xdecref are now unused, so
this patch removes themm. Future Python changes should use gdbpy_ref
instead.
2017-01-10 Tom Tromey <tom@tromey.com>
* python/python-internal.h (make_cleanup_py_decref)
(make_cleanup_py_xdecref): Don't declare.
* python/py-utils.c (py_decref, make_cleanup_py_decref)
(py_xdecref, make_cleanup_py_xdecref): Remove.
Diffstat (limited to 'gdb/python/python-internal.h')
-rw-r--r-- | gdb/python/python-internal.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h index 1d0ce0b..908a878 100644 --- a/gdb/python/python-internal.h +++ b/gdb/python/python-internal.h @@ -498,9 +498,6 @@ int gdbpy_initialize_xmethods (void) int gdbpy_initialize_unwind (void) CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION; -struct cleanup *make_cleanup_py_decref (PyObject *py); -struct cleanup *make_cleanup_py_xdecref (PyObject *py); - /* Called before entering the Python interpreter to install the current language and architecture to be used for Python values. Also set the active extension language for GDB so that SIGINT's |