1
0
mirror of https://github.com/mnaberez/py65.git synced 2025-04-04 22:29:36 +00:00
This commit is contained in:
Mike Naberezny 2015-02-09 15:42:43 -08:00
parent 8bebfa28f8
commit 69f243265f

View File

@ -17,7 +17,7 @@ if sys.platform[:3] == "win":
""" Read one character from the Windows console without blocking.
Does not echo the character. The stdin argument is for function
signature compatibility and is ignored. If no character is
available, an emptry string is returned.
available, an empty string is returned.
"""
if msvcrt.kbhit():
return getch(stdin)