summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/glibext/module.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pychrysalide/glibext/module.c')
-rw-r--r--plugins/pychrysalide/glibext/module.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/plugins/pychrysalide/glibext/module.c b/plugins/pychrysalide/glibext/module.c
index ff0a1bd..b45da4d 100644
--- a/plugins/pychrysalide/glibext/module.c
+++ b/plugins/pychrysalide/glibext/module.c
@@ -58,12 +58,19 @@ bool add_glibext_module(PyObject *super)
bool result; /* Bilan à retourner */
PyObject *module; /* Sous-module mis en place */
+#define PYCHRYSALIDE_GLIBEXT_DOC \
+ "This module contains the definition of some objects derived from" \
+ " the GObject structure.\n" \
+ "\n" \
+ "These common objects are used in several places inside Chrysalide" \
+ " and could be seen as extensions to the GLib API."
+
static PyModuleDef py_chrysalide_glibext_module = {
.m_base = PyModuleDef_HEAD_INIT,
.m_name = "pychrysalide.glibext",
- .m_doc = "Python module for Chrysalide.glibext",
+ .m_doc = PYCHRYSALIDE_GLIBEXT_DOC,
.m_size = -1,