summaryrefslogtreecommitdiffstats
path: root/Doc/faq
diff options
context:
space:
mode:
authorabdo <abd.nh25@gmail.com>2020-10-19 21:46:21 (GMT)
committerGitHub <noreply@github.com>2020-10-19 21:46:21 (GMT)
commit5d9e6575177f3e5f9aa20d6a08ae1204f122e672 (patch)
treeae0a8356de3cbc7d4fbae309fde3db4372b0e588 /Doc/faq
parentfa8748271a61177e9bf609921fa464cc6990478b (diff)
downloadcpython-5d9e6575177f3e5f9aa20d6a08ae1204f122e672.zip
cpython-5d9e6575177f3e5f9aa20d6a08ae1204f122e672.tar.gz
cpython-5d9e6575177f3e5f9aa20d6a08ae1204f122e672.tar.bz2
Link to the msvcrt module from the Windows FAQ (#22268)
Diffstat (limited to 'Doc/faq')
-rw-r--r--Doc/faq/windows.rst2
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.