diff options
author | AN Long <aisk@users.noreply.github.com> | 2023-09-22 00:19:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-22 00:19:48 (GMT) |
commit | 4230d7ce93cc25e9c5fb564a0b37e93f19ca0e4e (patch) | |
tree | 2265d9ec87f128bdacef37a34edf4ec2d12ef56f /Misc | |
parent | 3f5c5649cfefe5b03cebe53b3ae766e2739eee23 (diff) | |
download | cpython-4230d7ce93cc25e9c5fb564a0b37e93f19ca0e4e.zip cpython-4230d7ce93cc25e9c5fb564a0b37e93f19ca0e4e.tar.gz cpython-4230d7ce93cc25e9c5fb564a0b37e93f19ca0e4e.tar.bz2 |
gh-108996: fix and enable test_msvcrt (#109226)
* Add _testconsole.flush_console_input_buffer() function.
* test_kbhit(), test_getwch() and test_getwche() now call
flush_console_input_buffer().
* Don't override sys.stdin anymore (not needed).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2023-09-10-23-05-50.gh-issue-108996.tJBru6.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2023-09-10-23-05-50.gh-issue-108996.tJBru6.rst b/Misc/NEWS.d/next/Tests/2023-09-10-23-05-50.gh-issue-108996.tJBru6.rst new file mode 100644 index 0000000..ab6b5b5 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2023-09-10-23-05-50.gh-issue-108996.tJBru6.rst @@ -0,0 +1 @@ +Fix and enable ``test_msvcrt``.
|