diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-09-09 18:46:37 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-09-09 18:46:37 (GMT) |
commit | de02b084e6e5c57be32414da87111679a89049f7 (patch) | |
tree | 4cf4c7b7f616f56150e81e306b036006d72464c9 | |
parent | 2fadfc0ead279238b53f3250fa046c888473a056 (diff) | |
download | cpython-de02b084e6e5c57be32414da87111679a89049f7.zip cpython-de02b084e6e5c57be32414da87111679a89049f7.tar.gz cpython-de02b084e6e5c57be32414da87111679a89049f7.tar.bz2 |
Closes #22731: Documents change of console mode.
-rw-r--r-- | Doc/c-api/init.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index 639819c..e78ddae 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -37,6 +37,10 @@ Initializing and finalizing the interpreter (without calling :c:func:`Py_Finalize` first). There is no return value; it is a fatal error if the initialization fails. + .. note:: + On Windows, changes the console mode from ``O_TEXT`` to ``O_BINARY``, which will + also affect non-Python uses of the console using the C Runtime. + .. c:function:: void Py_InitializeEx(int initsigs) |