summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-10-19 19:14:36 (GMT)
committerGitHub <noreply@github.com>2021-10-19 19:14:36 (GMT)
commit1d8cb01e23ab5fc626d4deda216f9a9a19a644a2 (patch)
treec937d4d4ad416402ead43892369cac87e84e59db /Misc/NEWS.d
parent90004fca1cc3c6e3c9b2c3faae5cb1b7d7711648 (diff)
downloadcpython-1d8cb01e23ab5fc626d4deda216f9a9a19a644a2.zip
cpython-1d8cb01e23ab5fc626d4deda216f9a9a19a644a2.tar.gz
cpython-1d8cb01e23ab5fc626d4deda216f9a9a19a644a2.tar.bz2
bpo-45195: Fix test_readline.test_nonascii() (GH-28329) (GH-28984)
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/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Tests/2021-09-14-13-16-18.bpo-45195.EyQR1G.rst3
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.