summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAN Long <aisk@users.noreply.github.com>2023-09-22 00:19:48 (GMT)
committerGitHub <noreply@github.com>2023-09-22 00:19:48 (GMT)
commit4230d7ce93cc25e9c5fb564a0b37e93f19ca0e4e (patch)
tree2265d9ec87f128bdacef37a34edf4ec2d12ef56f /Misc
parent3f5c5649cfefe5b03cebe53b3ae766e2739eee23 (diff)
downloadcpython-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.rst1
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``.