diff options
Diffstat (limited to 'gdb/python/py-connection.c')
-rw-r--r-- | gdb/python/py-connection.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/gdb/python/py-connection.c b/gdb/python/py-connection.c index 79e2767..7f5cce3 100644 --- a/gdb/python/py-connection.c +++ b/gdb/python/py-connection.c @@ -287,18 +287,10 @@ connpy_get_connection_details (PyObject *self, void *closure) static int CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION gdbpy_initialize_connection (void) { - if (PyType_Ready (&connection_object_type) < 0) + if (gdbpy_type_ready (&connection_object_type) < 0) return -1; - if (gdb_pymodule_addobject (gdb_module, "TargetConnection", - (PyObject *) &connection_object_type) < 0) - return -1; - - if (PyType_Ready (&remote_connection_object_type) < 0) - return -1; - - if (gdb_pymodule_addobject (gdb_module, "RemoteTargetConnection", - (PyObject *) &remote_connection_object_type) < 0) + if (gdbpy_type_ready (&remote_connection_object_type) < 0) return -1; return 0; |