]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Link to the msvcrt module from the Windows FAQ (GH-22268)
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 19 Oct 2020 21:55:43 +0000 (14:55 -0700)
committerGitHub <noreply@github.com>
Mon, 19 Oct 2020 21:55:43 +0000 (14:55 -0700)
(cherry picked from commit 5d9e6575177f3e5f9aa20d6a08ae1204f122e672)

Co-authored-by: abdo <abd.nh25@gmail.com>
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.