-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support Python debugger #80
Comments
Can be reproduced with:
I would guess this might be because stdin isn't an interactive tty for the python process. @mozartilize were you expecting a interactive prompt or how some other behaviour? |
maybe related to this https://stackoverflow.com/a/18432456 |
@wader sorry, I dont get it. Interactive prompt only accessed if it can pause on breakpoint |
Ah i was a bit unclear. I just noticed that if i run the command without modd i get a prompt: $ python -c "import pdb; pdb.set_trace()"
--Return--
> <string>(1)<module>()->None
(Pdb) |
running with daemon and set breakpoint via
import pdb; pdb.set_trace()
program can't pause on breakpoint and just restarts
The text was updated successfully, but these errors were encountered: