diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2022-10-24 16:45:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-24 16:45:43 (GMT) |
commit | c5a9d3f67fc4b62543ddf6bc7b9ed392c2a81ec3 (patch) | |
tree | b0727493d391e37c5ec53b939fd6490c00085b46 | |
parent | c2370763793734aa6be8dbc326b70132770eaeaa (diff) | |
download | cpython-c5a9d3f67fc4b62543ddf6bc7b9ed392c2a81ec3.zip cpython-c5a9d3f67fc4b62543ddf6bc7b9ed392c2a81ec3.tar.gz cpython-c5a9d3f67fc4b62543ddf6bc7b9ed392c2a81ec3.tar.bz2 |
gh-95913: Fix grammar for SpooledTemporaryFile 3.11 whatsnew entry (#98604)
Followup from #98312.
-rw-r--r-- | Doc/whatsnew/3.11.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index d91307a..deec420 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -1000,7 +1000,7 @@ sysconfig tempfile -------- -* :class:`~tempfile.SpooledTemporaryFile` objects now fully implements the methods +* :class:`~tempfile.SpooledTemporaryFile` objects now fully implement the methods of :class:`io.BufferedIOBase` or :class:`io.TextIOBase` (depending on file mode). This lets them work correctly with APIs that expect file-like objects, |