summaryrefslogtreecommitdiff
path: root/plugins/dex/python/format.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-05-18 10:21:16 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-05-18 10:21:16 (GMT)
commit4f18f051936f633473c365d4c91ef7e77fa7feee (patch)
treee49603b80667a8cb2fc4592b5d4248f7cdf3494a /plugins/dex/python/format.c
parentd110791309783e6e30df837a81cf8e14e1ac9641 (diff)
Renamed the [Py]StructObject.
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);