diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-09-09 18:47:02 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-09-09 18:47:02 (GMT) |
commit | 8b26702fa3276b570c05e7ccc608bbf68336bf80 (patch) | |
tree | 159feca29b26c5b7ed393380a8edd8bc032c9d01 /Doc/c-api | |
parent | 7a35b1c2a70b0fbe4acdd62568f1158ed033df51 (diff) | |
parent | de02b084e6e5c57be32414da87111679a89049f7 (diff) | |
download | cpython-8b26702fa3276b570c05e7ccc608bbf68336bf80.zip cpython-8b26702fa3276b570c05e7ccc608bbf68336bf80.tar.gz cpython-8b26702fa3276b570c05e7ccc608bbf68336bf80.tar.bz2 |
Closes #22731: Documents change of console mode.
Diffstat (limited to 'Doc/c-api')
-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 d77836a..c272a1c 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_FinalizeEx` 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) |