summaryrefslogtreecommitdiff
path: root/Doc/c-api/init.rst
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-09-09 11:46:37 -0700
committerSteve Dower <steve.dower@microsoft.com>2016-09-09 11:46:37 -0700
commitc49adb3573aba3c2378dd2970416b60da7b9f8e2 (patch)
tree5272a3efb1200f614de22a2c7366b9f5b79a52c0 /Doc/c-api/init.rst
parent7d6b8ff39ee645e36a16082b1fbaa12b36cba52d (diff)
downloadcpython-c49adb3573aba3c2378dd2970416b60da7b9f8e2.tar.gz
Closes #22731: Documents change of console mode.
Diffstat (limited to 'Doc/c-api/init.rst')
-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 639819ce29..e78ddae708 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)