Skip to content
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

fix: macOS PUDB_TTY "I/O operation on closed file." #638

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

bukzor
Copy link
Contributor

@bukzor bukzor commented Mar 5, 2024

Don't close a file that's in use.
Apparently linux is okay with this, but macos isn't?

Otherwise, I get this error:

Traceback (most recent call last):
  File ".../site-packages/pudb/debugger.py", line 2542, in call_with_ui
    return f(*args, **kwargs)
           ^^^^^^^^^^^^^^^^^^
  File ".../site-packages/pudb/debugger.py", line 2865, in interaction
    self.event_loop()
  File ".../site-packages/pudb/debugger.py", line 2821, in event_loop
    self.screen.draw_screen(self.size, canvas)
  File ".../site-packages/urwid/display/_raw_display_base.py", line 582, in draw_screen
    self._setup_G1()
  File ".../site-packages/urwid/display/_raw_display_base.py", line 524, in _setup_G1
    self.write(escape.DESIGNATE_G1_SPECIAL)
  File ".../site-packages/urwid/display/_raw_display_base.py", line 220, in write
    self._term_output_file.write(data)
ValueError: I/O operation on closed file.

Don't close a file that's in use.
Apparently linux is okay with this, but macos isn't?

Otherwise, I get this error:

```
Traceback (most recent call last):
  File ".../site-packages/pudb/debugger.py", line 2542, in call_with_ui
    return f(*args, **kwargs)
           ^^^^^^^^^^^^^^^^^^
  File ".../site-packages/pudb/debugger.py", line 2865, in interaction
    self.event_loop()
  File ".../site-packages/pudb/debugger.py", line 2821, in event_loop
    self.screen.draw_screen(self.size, canvas)
  File ".../site-packages/urwid/display/_raw_display_base.py", line 582, in draw_screen
    self._setup_G1()
  File ".../site-packages/urwid/display/_raw_display_base.py", line 524, in _setup_G1
    self.write(escape.DESIGNATE_G1_SPECIAL)
  File ".../site-packages/urwid/display/_raw_display_base.py", line 220, in write
    self._term_output_file.write(data)
ValueError: I/O operation on closed file.
```
@@ -80,7 +80,6 @@ def _get_debugger(**kwargs):
kwargs.setdefault("stdin", tty_file)
kwargs.setdefault("stdout", tty_file)
kwargs.setdefault("term_size", term_size)
tty_file.close()
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree that the current state is incorrect.

Please either add a comment that we're purposefully leaking the FD, or make a way for Debugger to close the FD when done.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know this isn't what you mean but: The file closes when the process ends. We're doing one-time initialization of resources which will be used in the indefinite future, so it seems valid to let reference counting take care of it, to me.

I'll look and see whether I can find a better solution though.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants