summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShantanu <hauntsaninja@users.noreply.github.com>2020-05-18 05:07:57 (GMT)
committerGitHub <noreply@github.com>2020-05-18 05:07:57 (GMT)
commitd17f3d8315a3a775ab0807fc80acf92b1bd682f8 (patch)
tree5ed1c29858b0cf6188756c377929a342437354ae
parentbb8635cc3bc3dd65996803849ee1a91cfbebae9c (diff)
downloadcpython-d17f3d8315a3a775ab0807fc80acf92b1bd682f8.zip
cpython-d17f3d8315a3a775ab0807fc80acf92b1bd682f8.tar.gz
cpython-d17f3d8315a3a775ab0807fc80acf92b1bd682f8.tar.bz2
bpo-13601: Mention stderr's line buffering in What's New (GH-20168)
-rw-r--r--Doc/whatsnew/3.9.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 479c33b..66e7c64 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -542,6 +542,10 @@ most platforms. On Fedora and SuSE, it is equal to ``"lib64"`` on 64-bit
platforms.
(Contributed by Jan Matějek, Matěj Cepl, Charalampos Stratakis and Victor Stinner in :issue:`1294959`.)
+Previously, :attr:`sys.stderr` was block-buffered when non-interactive. Now
+``stderr`` defaults to always being line-buffered.
+(Contributed by Jendrik Seipp in :issue:`13601`.)
+
typing
------