We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Diverting the debugger interface to a diffent tty by setting the PUDB_TTY environment variable does not work.
Simply try: touch any-script.py; PUDB_TTY=$(tty) python -mpudb any-script.py
touch any-script.py; PUDB_TTY=$(tty) python -mpudb any-script.py
This results in a ValueError: I/O operation on closed file. exception.
ValueError: I/O operation on closed file.
This is due to calling tty_file.close() in _get_debugger() introduced in Close tty file when dne querying terminal info) The prolblem is not present, when this call does not happen.
tty_file.close()
_get_debugger()
The text was updated successfully, but these errors were encountered:
Probably fixed by #656. Let me know if that's not the case.
Sorry, something went wrong.
No branches or pull requests
Diverting the debugger interface to a diffent tty by setting the PUDB_TTY environment variable does not work.
Simply try:
touch any-script.py; PUDB_TTY=$(tty) python -mpudb any-script.py
This results in a
ValueError: I/O operation on closed file.
exception.This is due to calling
tty_file.close()
in_get_debugger()
introduced in Close tty file when dne querying terminal info)The prolblem is not present, when this call does not happen.
The text was updated successfully, but these errors were encountered: