{{ message }}
[3.14] Make Android streams respect the unbuffered (-u) option (GH-138806)#139108
Merged
hugovk merged 1 commit intoSep 29, 2025
Merged
[3.14] Make Android streams respect the unbuffered (-u) option (GH-138806)#139108hugovk merged 1 commit into
-u) option (GH-138806)#139108hugovk merged 1 commit into
Conversation
…38806) Android pipes stdout/stderr to the log, which means every write to the log becomes a separate log line. As a result, most practical uses of stdout/stderr should be buffered; but it doesn't hurt to preserve unbuffered handling in case it's useful. (cherry picked from commit 0ac377f) Co-authored-by: Malcolm Smith <smith@chaquo.com>
freakboy3742
approved these changes
Sep 18, 2025
Contributor
|
Assigning to @hugovk while to the 3.14 branch block is in place. |
Sorry, something went wrong.
Hide details
View details
hugovk
merged commit
7a65a47
into
python:3.14
Sep 29, 2025
54 checks passed
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
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.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.
Android pipes stdout/stderr to the log, which means every write to the log
becomes a separate log line. As a result, most practical uses of stdout/stderr
should be buffered; but it doesn't hurt to preserve unbuffered handling in case
it's useful.
(cherry picked from commit 0ac377f)
Co-authored-by: Malcolm Smith smith@chaquo.com