Skip to content
Snippets Groups Projects
Commit 6ca2f517 authored by alexey.stratulat's avatar alexey.stratulat
Browse files

[-] Temporarily removed the call of some functions.

parent 1cea8449
No related branches found
No related tags found
1 merge request!1Features 2392
......@@ -40,10 +40,10 @@ PyObject *dap_events_socket_is_ready_to_read_py(PyObject *self, PyObject *args){
if (!PyArg_ParseTuple(args, "O", &in_obj)){
return NULL;
}
bool result = dap_events_socket_is_ready_to_read(((PyDapEventsSocketObject*)in_obj)->t_events_socket);
if (result)
return Py_BuildValue("O", Py_True);
else
// bool result = dap_events_socket_is_ready_to_read(((PyDapEventsSocketObject*)in_obj)->t_events_socket);
// if (result)
// return Py_BuildValue("O", Py_True);
// else
return Py_BuildValue("O", Py_False);
}
PyObject *dap_events_socket_is_ready_to_write_py(PyObject *self, PyObject *args){
......@@ -51,10 +51,10 @@ PyObject *dap_events_socket_is_ready_to_write_py(PyObject *self, PyObject *args)
if (!PyArg_ParseTuple(args, "O", &in_obj)){
return NULL;
}
bool result = dap_events_socket_is_ready_to_write(((PyDapEventsSocketObject*)in_obj)->t_events_socket);
if (result)
return Py_BuildValue("O", Py_True);
else
//bool result = dap_events_socket_is_ready_to_write(((PyDapEventsSocketObject*)in_obj)->t_events_socket);
//if (result)
// return Py_BuildValue("O", Py_True);
// else
return Py_BuildValue("O", Py_False);
}
PyObject *dap_events_socket_set_readable_py(PyObject *self, PyObject *args){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment