mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-23 18:26:47 +08:00
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.
This commit is contained in:
@ -23,48 +23,6 @@
|
||||
#include "python-internal.h"
|
||||
#include "py-ref.h"
|
||||
|
||||
/* This is a cleanup function which decrements the refcount on a
|
||||
Python object. */
|
||||
|
||||
static void
|
||||
py_decref (void *p)
|
||||
{
|
||||
PyObject *py = (PyObject *) p;
|
||||
|
||||
Py_DECREF (py);
|
||||
}
|
||||
|
||||
/* Return a new cleanup which will decrement the Python object's
|
||||
refcount when run. */
|
||||
|
||||
struct cleanup *
|
||||
make_cleanup_py_decref (PyObject *py)
|
||||
{
|
||||
return make_cleanup (py_decref, (void *) py);
|
||||
}
|
||||
|
||||
/* This is a cleanup function which decrements the refcount on a
|
||||
Python object. This function accounts appropriately for NULL
|
||||
references. */
|
||||
|
||||
static void
|
||||
py_xdecref (void *p)
|
||||
{
|
||||
PyObject *py = (PyObject *) p;
|
||||
|
||||
Py_XDECREF (py);
|
||||
}
|
||||
|
||||
/* Return a new cleanup which will decrement the Python object's
|
||||
refcount when run. Account for and operate on NULL references
|
||||
correctly. */
|
||||
|
||||
struct cleanup *
|
||||
make_cleanup_py_xdecref (PyObject *py)
|
||||
{
|
||||
return make_cleanup (py_xdecref, py);
|
||||
}
|
||||
|
||||
/* Converts a Python 8-bit string to a unicode string object. Assumes the
|
||||
8-bit string is in the host charset. If an error occurs during conversion,
|
||||
returns NULL with a python exception set.
|
||||
|
Reference in New Issue
Block a user