gh-75245: Allow socket.makefile to handle line buffering properly - #12370
Merged
Conversation
Line buffering is enabled by using the argument `buffering=1` as defined in `io.open`.
|
This PR is stale because it has been open for 30 days with no activity. |
# Conflicts: # Lib/test/test_socket.py
serhiy-storchaka
approved these changes
Aug 12, 2026
serhiy-storchaka
left a comment
Member
There was a problem hiding this comment.
Added a warning in binary mode, as in open(). LGTM now. 👍
open() emits a RuntimeWarning for buffering=1 in binary mode and uses the default buffer size.
|
mbeijen
pushed a commit
to mbeijen/cpython
that referenced
this pull request
Aug 14, 2026
…-12370) buffering=1 now enables line buffering in text mode, as in open() and as it worked in Python 2. In binary mode it emits a RuntimeWarning and uses the default buffer size, also as in open(). Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Line buffering is enabled by using the argument
buffering=1as defined inio.open.I did not update the docs for socket.makefile since it already mentions the arguments being interpreted the same way as
open:https://bugs.python.org/issue31062