summaryrefslogtreecommitdiff
path: root/plugins/dex/python/module.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/dex/python/module.c')
-rw-r--r--plugins/dex/python/module.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/plugins/dex/python/module.c b/plugins/dex/python/module.c
index e375ad7..9fbc29c 100644
--- a/plugins/dex/python/module.c
+++ b/plugins/dex/python/module.c
@@ -59,12 +59,20 @@ bool add_format_dex_module_to_python_module(void)
PyObject *super; /* Module à compléter */
PyObject *module; /* Sous-module mis en place */
+#define DEX_MODULE_DOC \
+ "This module provides several features to deal with the Dalvik Executable" \
+ " (DEX) format.\n" \
+ "\n" \
+ "The layout of such a format is described at:" \
+ " https://source.android.com/devices/tech/dalvik/dex-format"
+
+
static PyModuleDef py_chrysalide_dex_module = {
.m_base = PyModuleDef_HEAD_INIT,
.m_name = "pychrysalide.format.dex",
- .m_doc = "Python module for Chrysalide.format.dex",
+ .m_doc = DEX_MODULE_DOC,
.m_size = -1,