diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-04-30 13:53:46 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-04-30 13:53:46 (GMT) |
commit | ce43a13de1760603af2848bd51ab6bac3c794c10 (patch) | |
tree | d14e9df0797479403d2a4a3416d55fdca8c67993 /plugins/pychrysalide | |
parent | 8327e2edfea2417a1c08130fac6a6408903c549b (diff) |
Updated the Python signature for get_reg_names().
Diffstat (limited to 'plugins/pychrysalide')
-rw-r--r-- | plugins/pychrysalide/debug/debugger.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/pychrysalide/debug/debugger.c b/plugins/pychrysalide/debug/debugger.c index 20b94c7..5d8181f 100644 --- a/plugins/pychrysalide/debug/debugger.c +++ b/plugins/pychrysalide/debug/debugger.c @@ -1052,7 +1052,7 @@ PyTypeObject *get_python_binary_debugger_type(void) { "get_reg_names", py_binary_debugger_get_register_names, METH_VARARGS, - "get_reg_names($self, [grp]/)\n--\n\nGet the names of all registers belonging to an optional group." + "get_reg_names($self, grp, /)\n--\n\nGet the names of all registers belonging to an optional group." }, { "get_reg_size", py_binary_debugger_get_register_size, @@ -1140,7 +1140,7 @@ PyTypeObject *get_python_binary_debugger_type(void) PyVarObject_HEAD_INIT(NULL, 0) - .tp_name = "pychrysalide.analysis.BinaryDebugger", + .tp_name = "pychrysalide.debug.BinaryDebugger", .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, |