diff options
author | Eli Zaretskii <eliz@gnu.org> | 2011-08-05 14:24:06 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2011-08-05 14:24:06 +0000 |
commit | d98d69f90da424d4ca4edea77e38cd13488af5ce (patch) | |
tree | d7a691b071cf1b45ab062fd40b7fd82928fd9ff9 | |
parent | 1716dce74927cbfc06d27862c2ac3e9335ce9b4d (diff) | |
download | gdb-d98d69f90da424d4ca4edea77e38cd13488af5ce.tar.gz |
* python/py-breakpoint.c (gdbpy_initialize_breakpoints): Move the
initialization of the tp_new member to the corresponding
gdbpy_initialize_* function.
* python/py-cmd.c (gdbpy_initialize_commands): Likewise.
* python/py-frame.c (gdbpy_initialize_frames): Likewise.
* python/py-function.c (gdbpy_initialize_functions): Likewise.
* python/py-inferior.c (gdbpy_initialize_inferior): Likewise.
* python/py-param.c (gdbpy_initialize_parameters): Likewise.
-rw-r--r-- | gdb/ChangeLog | 11 | ||||
-rw-r--r-- | gdb/python/py-breakpoint.c | 2 | ||||
-rw-r--r-- | gdb/python/py-cmd.c | 2 | ||||
-rw-r--r-- | gdb/python/py-frame.c | 2 | ||||
-rw-r--r-- | gdb/python/py-function.c | 2 | ||||
-rw-r--r-- | gdb/python/py-inferior.c | 2 | ||||
-rw-r--r-- | gdb/python/py-param.c | 2 |
7 files changed, 17 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 893a0b43ffb..a911a3b30fd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,14 @@ +2011-08-05 Eli Zaretskii <eliz@gnu.org> + + * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Move the + initialization of the tp_new member to the corresponding + gdbpy_initialize_* function. + * python/py-cmd.c (gdbpy_initialize_commands): Likewise. + * python/py-frame.c (gdbpy_initialize_frames): Likewise. + * python/py-function.c (gdbpy_initialize_functions): Likewise. + * python/py-inferior.c (gdbpy_initialize_inferior): Likewise. + * python/py-param.c (gdbpy_initialize_parameters): Likewise. + 2011-08-05 Jan Kratochvil <jan.kratochvil@redhat.com> * spu-tdep.c (info_spu_event_command, info_spu_signal_command) diff --git a/gdb/python/py-breakpoint.c b/gdb/python/py-breakpoint.c index 126957cf5bd..3dc0fcacbeb 100644 --- a/gdb/python/py-breakpoint.c +++ b/gdb/python/py-breakpoint.c @@ -862,6 +862,7 @@ gdbpy_initialize_breakpoints (void) { int i; + breakpoint_object_type.tp_new = PyType_GenericNew; if (PyType_Ready (&breakpoint_object_type) < 0) return; @@ -1016,5 +1017,4 @@ static PyTypeObject breakpoint_object_type = 0, /* tp_dictoffset */ bppy_init, /* tp_init */ 0, /* tp_alloc */ - PyType_GenericNew /* tp_new */ }; diff --git a/gdb/python/py-cmd.c b/gdb/python/py-cmd.c index 20933fded10..9ff8eaaddf9 100644 --- a/gdb/python/py-cmd.c +++ b/gdb/python/py-cmd.c @@ -559,6 +559,7 @@ gdbpy_initialize_commands (void) { int i; + cmdpy_object_type.tp_new = PyType_GenericNew; if (PyType_Ready (&cmdpy_object_type) < 0) return; @@ -646,7 +647,6 @@ static PyTypeObject cmdpy_object_type = 0, /* tp_dictoffset */ cmdpy_init, /* tp_init */ 0, /* tp_alloc */ - PyType_GenericNew /* tp_new */ }; diff --git a/gdb/python/py-frame.c b/gdb/python/py-frame.c index d7128a9dca5..7efd13fef38 100644 --- a/gdb/python/py-frame.c +++ b/gdb/python/py-frame.c @@ -593,6 +593,7 @@ frapy_richcompare (PyObject *self, PyObject *other, int op) void gdbpy_initialize_frames (void) { + frame_object_type.tp_new = PyType_GenericNew; if (PyType_Ready (&frame_object_type) < 0) return; @@ -702,5 +703,4 @@ static PyTypeObject frame_object_type = { 0, /* tp_dictoffset */ 0, /* tp_init */ 0, /* tp_alloc */ - PyType_GenericNew /* tp_new */ }; diff --git a/gdb/python/py-function.c b/gdb/python/py-function.c index 5cdf1903067..dc78b29f216 100644 --- a/gdb/python/py-function.c +++ b/gdb/python/py-function.c @@ -182,6 +182,7 @@ fnpy_init (PyObject *self, PyObject *args, PyObject *kwds) void gdbpy_initialize_functions (void) { + fnpy_object_type.tp_new = PyType_GenericNew; if (PyType_Ready (&fnpy_object_type) < 0) return; @@ -231,5 +232,4 @@ static PyTypeObject fnpy_object_type = 0, /* tp_dictoffset */ fnpy_init, /* tp_init */ 0, /* tp_alloc */ - PyType_GenericNew /* tp_new */ }; diff --git a/gdb/python/py-inferior.c b/gdb/python/py-inferior.c index ab9ee8ed8a6..6add6815eb5 100644 --- a/gdb/python/py-inferior.c +++ b/gdb/python/py-inferior.c @@ -702,6 +702,7 @@ gdbpy_initialize_inferior (void) observer_attach_target_resumed (python_on_resume); observer_attach_inferior_exit (python_inferior_exit); + membuf_object_type.tp_new = PyType_GenericNew; if (PyType_Ready (&membuf_object_type) < 0) return; @@ -839,5 +840,4 @@ static PyTypeObject membuf_object_type = { 0, /* tp_dictoffset */ 0, /* tp_init */ 0, /* tp_alloc */ - PyType_GenericNew /* tp_new */ }; diff --git a/gdb/python/py-param.c b/gdb/python/py-param.c index 5c726d67904..747d85b3ea3 100644 --- a/gdb/python/py-param.c +++ b/gdb/python/py-param.c @@ -749,6 +749,7 @@ gdbpy_initialize_parameters (void) { int i; + parmpy_object_type.tp_new = PyType_GenericNew; if (PyType_Ready (&parmpy_object_type) < 0) return; @@ -814,5 +815,4 @@ static PyTypeObject parmpy_object_type = 0, /* tp_dictoffset */ parmpy_init, /* tp_init */ 0, /* tp_alloc */ - PyType_GenericNew /* tp_new */ }; |