[Python-checkins] Link to the msvcrt module from the Windows FAQ (GH-22268)

Miss Skeleton (bot) webhook-mailer at python.org
Mon Oct 19 17:55:51 EDT 2020


https://github.com/python/cpython/commit/e4a03be014841716056e72710f4b7225a25cec6e
commit: e4a03be014841716056e72710f4b7225a25cec6e
branch: 3.8
author: Miss Skeleton (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-10-19T14:55:43-07:00
summary:

Link to the msvcrt module from the Windows FAQ (GH-22268)

(cherry picked from commit 5d9e6575177f3e5f9aa20d6a08ae1204f122e672)

Co-authored-by: abdo <abd.nh25 at gmail.com>

files:
M Doc/faq/windows.rst

diff --git a/Doc/faq/windows.rst b/Doc/faq/windows.rst
index a181086e9ce62..c550a055529a7 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.
 



More information about the Python-checkins mailing list