diff options
Diffstat (limited to 'Doc/library/msvcrt.rst')
-rw-r--r-- | Doc/library/msvcrt.rst | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Doc/library/msvcrt.rst b/Doc/library/msvcrt.rst index 47d63b5..4537be8 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,13 +98,13 @@ 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. - + .. versionadded:: 2.6 - + .. function:: getche() @@ -115,7 +115,7 @@ Console I/O .. function:: getwche() Wide char variant of :func:`getche`, returning a Unicode value. - + .. versionadded:: 2.6 @@ -123,24 +123,24 @@ Console I/O Print the character *char* to the console without buffering. - + .. function:: putwch(unicode_char) Wide char variant of :func:`putch`, accepting a Unicode value. - + .. versionadded:: 2.6 - + .. 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. - + .. versionadded:: 2.6 |