summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/analysis/types/basic.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pychrysalide/analysis/types/basic.c')
-rw-r--r--plugins/pychrysalide/analysis/types/basic.c27
1 files changed, 19 insertions, 8 deletions
diff --git a/plugins/pychrysalide/analysis/types/basic.c b/plugins/pychrysalide/analysis/types/basic.c
index e3bde6e..f584bb6 100644
--- a/plugins/pychrysalide/analysis/types/basic.c
+++ b/plugins/pychrysalide/analysis/types/basic.c
@@ -33,6 +33,7 @@
#include "../type.h"
+#include "../../access.h"
#include "../../helpers.h"
@@ -230,20 +231,30 @@ static bool py_basic_type_define_constants(PyTypeObject *obj_type)
* *
******************************************************************************/
-bool register_python_basic_type(PyObject *module)
+bool ensure_python_basic_type_is_registered(void)
{
- PyTypeObject *py_basic_type_type; /* Type Python 'BasicType' */
+ PyTypeObject *type; /* Type Python 'BasicType' */
+ PyObject *module; /* Module à recompléter */
PyObject *dict; /* Dictionnaire du module */
- py_basic_type_type = get_python_basic_type_type();
+ type = get_python_basic_type_type();
- dict = PyModule_GetDict(module);
+ if (!PyType_HasFeature(type, Py_TPFLAGS_READY))
+ {
+ module = get_access_to_python_module("pychrysalide.analysis.types");
+
+ dict = PyModule_GetDict(module);
+
+ if (!ensure_python_data_type_is_registered())
+ return false;
- if (!register_class_for_pygobject(dict, G_TYPE_BASIC_TYPE, py_basic_type_type, get_python_data_type_type()))
- return false;
+ if (!register_class_for_pygobject(dict, G_TYPE_BASIC_TYPE, type, get_python_data_type_type()))
+ return false;
- if (!py_basic_type_define_constants(py_basic_type_type))
- return false;
+ if (!py_basic_type_define_constants(type))
+ return false;
+
+ }
return true;