diff options
author | Radislav Chugunov <52372310+chgnrdv@users.noreply.github.com> | 2024-06-03 07:47:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 07:47:36 (GMT) |
commit | 52586f930f62bd80374f0f240a4ecce0c0238174 (patch) | |
tree | 9a58cd4a036e0ef7db5abf981afc88495311fdb4 /Misc | |
parent | 3ea9b92086240b2f38a74c6945e7a723b480cefe (diff) | |
download | cpython-52586f930f62bd80374f0f240a4ecce0c0238174.zip cpython-52586f930f62bd80374f0f240a4ecce0c0238174.tar.gz cpython-52586f930f62bd80374f0f240a4ecce0c0238174.tar.bz2 |
gh-119506: fix `_io.TextIOWrapper.write()` write during flush (#119507)
Co-authored-by: Inada Naoki <songofacandy@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-05-24-14-32-24.gh-issue-119506.-nMNqq.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-05-24-14-32-24.gh-issue-119506.-nMNqq.rst b/Misc/NEWS.d/next/Library/2024-05-24-14-32-24.gh-issue-119506.-nMNqq.rst new file mode 100644 index 0000000..f9b764a --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-05-24-14-32-24.gh-issue-119506.-nMNqq.rst @@ -0,0 +1 @@ +Fix :meth:`!io.TextIOWrapper.write` method breaks internal buffer when the method is called again during flushing internal buffer. |