summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-09-14 15:38:04 (GMT)
committerGitHub <noreply@github.com>2021-09-14 15:38:04 (GMT)
commit797c8eb9ef511f0c25f10a453b35c4d2fe383c30 (patch)
tree671c71b3f1ea51d867d77385b7017cf11f0d51d1 /Misc
parent7f60c9e1c6e22cc0e846a872c318570926cd3094 (diff)
downloadcpython-797c8eb9ef511f0c25f10a453b35c4d2fe383c30.zip
cpython-797c8eb9ef511f0c25f10a453b35c4d2fe383c30.tar.gz
cpython-797c8eb9ef511f0c25f10a453b35c4d2fe383c30.tar.bz2
bpo-45195: Fix test_readline.test_nonascii() (GH-28329)
Fix test_readline.test_nonascii(): sometimes, the newline character is not written at the end, so don't expect it in the output.
Diffstat (limited to 'Misc')
-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.