|
@@ -45,8 +45,8 @@ void Opcode_destroy(s_Opcode* const self);
|
|
|
|
|
|
PyObject* Opcode_getCode(const s_Opcode* const self);
|
|
|
PyObject* Opcode_toText(const s_Opcode* const self);
|
|
|
-PyObject* Opcode_str(PyObject* const self);
|
|
|
-PyObject* Opcode_QUERY(const s_Opcode* self);
|
|
|
+PyObject* Opcode_str(PyObject* self);
|
|
|
+PyObject* Opcode_QUERY(const Opcode* self);
|
|
|
PyObject* Opcode_IQUERY(const s_Opcode* self);
|
|
|
PyObject* Opcode_STATUS(const s_Opcode* self);
|
|
|
PyObject* Opcode_RESERVED3(const s_Opcode* self);
|
|
@@ -202,7 +202,7 @@ Opcode_toText(const s_Opcode* const self) {
|
|
|
}
|
|
|
|
|
|
PyObject*
|
|
|
-Opcode_str(PyObject* const self) {
|
|
|
+Opcode_str(PyObject* self) {
|
|
|
// Simply call the to_text method we already defined
|
|
|
return (PyObject_CallMethod(self,
|
|
|
const_cast<char*>("to_text"),
|