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

Closed
wants to merge 1 commit into from

Commits on Mar 5, 2024

  1. fix: macOS PUDB_TTY "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.
    ```
    bukzor authored Mar 5, 2024
    Configuration menu
    Copy the full SHA
    d3ebb76 View commit details
    Browse the repository at this point in the history