diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-09-15 12:38:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-15 12:38:49 (GMT) |
commit | ececa53b7fc9c21d0c8153153e3c19da1d0a1e80 (patch) | |
tree | 425b6672416dc58bea1d6191197cc0ff42a7b7da /Misc | |
parent | 0c64569ac7066a97e4482c6d6e4d780806692ae5 (diff) | |
download | cpython-ececa53b7fc9c21d0c8153153e3c19da1d0a1e80.zip cpython-ececa53b7fc9c21d0c8153153e3c19da1d0a1e80.tar.gz cpython-ececa53b7fc9c21d0c8153153e3c19da1d0a1e80.tar.bz2 |
bpo-45195: Fix test_readline.test_nonascii() (GH-28329) (GH-28333)
Fix test_readline.test_nonascii(): sometimes, the newline character
is not written at the end, so don't expect it in the output.
(cherry picked from commit 797c8eb9ef511f0c25f10a453b35c4d2fe383c30)
Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2021-09-14-13-16-18.bpo-45195.EyQR1G.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2021-09-14-13-16-18.bpo-45195.EyQR1G.rst b/Misc/NEWS.d/next/Tests/2021-09-14-13-16-18.bpo-45195.EyQR1G.rst new file mode 100644 index 0000000..16a1f44 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2021-09-14-13-16-18.bpo-45195.EyQR1G.rst @@ -0,0 +1,3 @@ +Fix test_readline.test_nonascii(): sometimes, the newline character is not +written at the end, so don't expect it in the output. Patch by Victor +Stinner. |