Commit 0765dd6b authored by Antoine Pitrou's avatar Antoine Pitrou

Standard streams use file descriptors, not FILE pointers.

parent 126c8b4a
...@@ -100,7 +100,7 @@ Initialization, Finalization, and Threads ...@@ -100,7 +100,7 @@ Initialization, Finalization, and Threads
(``sys.path``) are also separate. The new environment has no ``sys.argv`` (``sys.path``) are also separate. The new environment has no ``sys.argv``
variable. It has new standard I/O stream file objects ``sys.stdin``, variable. It has new standard I/O stream file objects ``sys.stdin``,
``sys.stdout`` and ``sys.stderr`` (however these refer to the same underlying ``sys.stdout`` and ``sys.stderr`` (however these refer to the same underlying
:c:type:`FILE` structures in the C library). file descriptors).
The return value points to the first thread state created in the new The return value points to the first thread state created in the new
sub-interpreter. This thread state is made in the current thread state. sub-interpreter. This thread state is made in the current thread state.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment