summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-09-09 18:46:37 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2016-09-09 18:46:37 (GMT)
commitde02b084e6e5c57be32414da87111679a89049f7 (patch)
tree4cf4c7b7f616f56150e81e306b036006d72464c9 /Doc/c-api
parent2fadfc0ead279238b53f3250fa046c888473a056 (diff)
downloadcpython-de02b084e6e5c57be32414da87111679a89049f7.zip
cpython-de02b084e6e5c57be32414da87111679a89049f7.tar.gz
cpython-de02b084e6e5c57be32414da87111679a89049f7.tar.bz2
Closes #22731: Documents change of console mode.
Diffstat (limited to 'Doc/c-api')
-rw-r--r--Doc/c-api/init.rst4
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)