diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-08-30 23:02:44 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-08-30 23:02:44 (GMT) |
commit | 1307580ca1ca820b57dcfbfcdcee9afe74cc1614 (patch) | |
tree | d98055a2cafcd99c21606305b3e52d40468a5419 /plugins/pychrysalide/arch | |
parent | f23eb3b70c08d1ac6f93b3316404804764e756c9 (diff) |
Fixed some Python method signatures.
Diffstat (limited to 'plugins/pychrysalide/arch')
-rw-r--r-- | plugins/pychrysalide/arch/vmpa.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/pychrysalide/arch/vmpa.c b/plugins/pychrysalide/arch/vmpa.c index 70d9364..c226224 100644 --- a/plugins/pychrysalide/arch/vmpa.c +++ b/plugins/pychrysalide/arch/vmpa.c @@ -1166,9 +1166,10 @@ static PyObject *py_mrange_new(PyTypeObject *type, PyObject *args, PyObject *kwd PyTypeObject *get_python_mrange_type(void) { static PyMethodDef py_mrange_methods[] = { - { "contains", py_mrange_contains, - METH_VARARGS, - "contains($self, other, /)\n--\nTell if the current range contains another given range or address." + { + "contains", py_mrange_contains, + METH_VARARGS, + "contains($self, other, /)\n--\n\nTell if the current range contains another given range or address." }, #if 0 { "read_u8", py_arch_instruction_read_u8, |