summaryrefslogtreecommitdiff
path: root/Doc/library/msvcrt.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/msvcrt.rst')
-rw-r--r--Doc/library/msvcrt.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/Doc/library/msvcrt.rst b/Doc/library/msvcrt.rst
index 8a0452f25d..9be792d00b 100644
--- a/Doc/library/msvcrt.rst
+++ b/Doc/library/msvcrt.rst
@@ -18,7 +18,7 @@ documentation.
The module implements both the normal and wide char variants of the console I/O
api. The normal API deals only with ASCII characters and is of limited use
-for internationalized applications. The wide char API should be used where
+for internationalized applications. The wide char API should be used where
ever possible
.. _msvcrt-files:
@@ -98,11 +98,11 @@ Console I/O
return the keycode. The :kbd:`Control-C` keypress cannot be read with this
function.
-
+
.. function:: getwch()
Wide char variant of :func:`getch`, returning a Unicode value.
-
+
.. function:: getche()
@@ -113,28 +113,28 @@ Console I/O
.. function:: getwche()
Wide char variant of :func:`getche`, returning a Unicode value.
-
+
.. function:: putch(char)
Print the character *char* to the console without buffering.
-
+
.. function:: putwch(unicode_char)
Wide char variant of :func:`putch`, accepting a Unicode value.
-
+
.. function:: ungetch(char)
Cause the character *char* to be "pushed back" into the console buffer; it will
be the next character read by :func:`getch` or :func:`getche`.
-
+
.. function:: ungetwch(unicode_char)
Wide char variant of :func:`ungetch`, accepting a Unicode value.
-
+
.. _msvcrt-other: