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 'WriteToConn' object has no attribute 'flush' #16801

Merged
merged 2 commits into from
Jan 30, 2024

Commits on Jan 19, 2024

  1. Remove unused default argument

    This default isn't used anywhere in the codebase.
    meshy committed Jan 19, 2024
    Configuration menu
    Copy the full SHA
    86190a0 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2024

  1. Complete implementation of stdio stub

    This class replaced stdout and stderr to capture output, but caused
    issues because it didn't implement the full API of sys.stdout and
    sys.stderr.
    
    By fully stubbing the TextIO API we prevent issues with other code
    which uses more of the API than we had previously accounted for.
    
    Fixes python#16678
    meshy committed Jan 20, 2024
    Configuration menu
    Copy the full SHA
    a405475 View commit details
    Browse the repository at this point in the history