From: abdo Date: Mon, 19 Oct 2020 21:46:21 +0000 (+0300) Subject: Link to the msvcrt module from the Windows FAQ (#22268) X-Git-Tag: v3.10.0a2~157 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5d9e6575177f3e5f9aa20d6a08ae1204f122e672;p=thirdparty%2FPython%2Fcpython.git Link to the msvcrt module from the Windows FAQ (#22268) --- diff --git a/Doc/faq/windows.rst b/Doc/faq/windows.rst index a181086e9ce6..c550a055529a 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.