-
-
Notifications
You must be signed in to change notification settings - Fork 33.8k
bpo-45195: Fix test_readline.test_nonascii() #28329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Fix test_readline.test_nonascii(): sometimes, the newline character is not written at the end, so don't expect it in the output.
| @@ -0,0 +1,3 @@ | |||
| Fix test_readline.test_nonascii(): sometimes, the newline character is not | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am just confused about this New entry. The end user should notice this New entry?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO it's good to know that the test was unstable and is now fixed. It's in the "Tests" category.
|
Thanks @vstinner for the PR 🌮🎉.. I'm working now to backport this PR to: 3.9, 3.10. |
|
GH-28333 is a backport of this pull request to the 3.10 branch. |
|
GH-28334 is a backport of this pull request to the 3.9 branch. |
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 797c8eb) Co-authored-by: Victor Stinner <vstinner@python.org>
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 797c8eb) Co-authored-by: Victor Stinner <vstinner@python.org>
|
Thanks @vstinner for the PR 🌮🎉.. I'm working now to backport this PR to: 3.8. |
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 797c8eb) Co-authored-by: Victor Stinner <vstinner@python.org>
|
GH-28984 is a backport of this pull request to the 3.8 branch. |
Fix test_readline.test_nonascii(): sometimes, the newline character
is not written at the end, so don't expect it in the output.
https://bugs.python.org/issue45195