xshirax commented on issue #38435:
URL: https://github.com/apache/arrow/issues/38435#issuecomment-1779039898
Hi
I'm not interested in debugging any c++ code. I want breakpoints to hit
inside the python logic I wrote in functions like "do_get".
for example in the next code:
```
class FlightServer(pyarrow.flight.FlightServerBase):
def do_get(self, context, ticket):
print("hello")
table = self._get_data(ticket)
return parrow.flight.RecordBatchStream(table)
```
I want the breakpoint to hit the print for example. or somewhere inside my
internal function of _get_data.
Is it possible to do without using gdb / lldb?
Thanks!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]