diff options
Diffstat (limited to 'plugins/pychrysalide/arch/processor.c')
-rw-r--r-- | plugins/pychrysalide/arch/processor.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/plugins/pychrysalide/arch/processor.c b/plugins/pychrysalide/arch/processor.c index 71ef153..bd1b521 100644 --- a/plugins/pychrysalide/arch/processor.c +++ b/plugins/pychrysalide/arch/processor.c @@ -278,7 +278,6 @@ static int py_arch_processor_init(PyObject *self, PyObject *args, PyObject *kwds { unsigned int endianness; /* Boutisme du processeur */ int ret; /* Bilan de lecture des args. */ - PyObject *new_kwds; /* Nouveau dictionnaire épuré */ GArchProcessor *proc; /* Processeur à manipuler */ static char *kwlist[] = { "endianness", NULL }; @@ -313,12 +312,7 @@ static int py_arch_processor_init(PyObject *self, PyObject *args, PyObject *kwds /* Initialisation d'un objet GLib */ - new_kwds = PyDict_New(); - - ret = PyGObject_Type.tp_init(self, args, new_kwds); - - Py_DECREF(new_kwds); - + ret = forward_pygobjet_init(self); if (ret == -1) return -1; /* Eléments de base */ |