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

(cherry picked from commit 5d9e657517)

Co-authored-by: abdo <abd.nh25@gmail.com>
This commit is contained in:
Miss Skeleton (bot) 2020-10-19 14:55:43 -07:00 committed by GitHub
parent 4764097e4d
commit e4a03be014
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View 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.