]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Link to the msvcrt module from the Windows FAQ (#22268)
authorabdo <abd.nh25@gmail.com>
Mon, 19 Oct 2020 21:46:21 +0000 (00:46 +0300)
committerGitHub <noreply@github.com>
Mon, 19 Oct 2020 21:46:21 +0000 (22:46 +0100)
Doc/faq/windows.rst

index a181086e9ce6271b38f3316471de2417e010e3b9..c550a055529a7b88868efcf3ef4da5906d26b44b 100644 (file)
@@ -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.