summaryrefslogtreecommitdiff
path: root/plugins/dex/python/format.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/dex/python/format.c')
-rw-r--r--plugins/dex/python/format.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/plugins/dex/python/format.c b/plugins/dex/python/format.c
index c1e4c40..fa65b25 100644
--- a/plugins/dex/python/format.c
+++ b/plugins/dex/python/format.c
@@ -128,17 +128,17 @@ static PyObject *py_dex_format_read_type_list(PyObject *self, PyObject *args)
bool status; /* Bilan de l'opération */
uint32_t i; /* Boucle de parcours */
-#define DEX_POOL_READ_TYPE_LIST_METHOD PYTHON_METHOD_DEF \
-( \
- read_type_list, "$self, offset, /", \
- METH_VARARGS, py_dex_format, \
- "Provide the raw data of a given type list as an array of pychrysalide.PyStructObject" \
- " instances." \
- "\n" \
- "All the items are fields extracted from the Dex *type_list* structure:\n" \
- "* type_idx: index into the *type_ids* list.\n" \
- "\n" \
- "In case of error, the function returns None." \
+#define DEX_POOL_READ_TYPE_LIST_METHOD PYTHON_METHOD_DEF \
+( \
+ read_type_list, "$self, offset, /", \
+ METH_VARARGS, py_dex_format, \
+ "Provide the raw data of a given type list as an array of pychrysalide.StructObject" \
+ " instances." \
+ "\n" \
+ "All the items are fields extracted from the Dex *type_list* structure:\n" \
+ "* type_idx: index into the *type_ids* list.\n" \
+ "\n" \
+ "In case of error, the function returns None." \
)
ret = PyArg_ParseTuple(args, "I", &offset);