diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-10-19 21:55:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 21:55:43 (GMT) |
commit | e4a03be014841716056e72710f4b7225a25cec6e (patch) | |
tree | 6bf93906eaf43369133338f9e85e8cbdc70dfad8 | |
parent | 4764097e4d1c92b0e7610fd4143393a7c69e71ff (diff) | |
download | cpython-e4a03be014841716056e72710f4b7225a25cec6e.zip cpython-e4a03be014841716056e72710f4b7225a25cec6e.tar.gz cpython-e4a03be014841716056e72710f4b7225a25cec6e.tar.bz2 |
Link to the msvcrt module from the Windows FAQ (GH-22268)
(cherry picked from commit 5d9e6575177f3e5f9aa20d6a08ae1204f122e672)
Co-authored-by: abdo <abd.nh25@gmail.com>
-rw-r--r-- | Doc/faq/windows.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/windows.rst b/Doc/faq/windows.rst index a181086..c550a05 100644 --- a/Doc/faq/windows.rst +++ b/Doc/faq/windows.rst @@ -279,7 +279,7 @@ in batch mode. How do I check for a keypress without blocking? ----------------------------------------------- -Use the msvcrt module. This is a standard Windows-specific extension module. +Use the :mod:`msvcrt` module. This is a standard Windows-specific extension module. It defines a function ``kbhit()`` which checks whether a keyboard hit is present, and ``getch()`` which gets one character without echoing it. |