diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-15 11:44:17 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-15 11:44:17 (GMT) |
commit | 0765dd6b96f159fdf958a00d5c12092c1c368b37 (patch) | |
tree | 984fdb271610a9f56ef1d107fb86bef3a38e77f5 /Doc/c-api | |
parent | 126c8b4a82fdac14c722f11ed4e0a33dcefa4f6b (diff) | |
download | cpython-0765dd6b96f159fdf958a00d5c12092c1c368b37.zip cpython-0765dd6b96f159fdf958a00d5c12092c1c368b37.tar.gz cpython-0765dd6b96f159fdf958a00d5c12092c1c368b37.tar.bz2 |
Standard streams use file descriptors, not FILE pointers.
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/init.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index 671ba25..f35df87 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -100,7 +100,7 @@ Initialization, Finalization, and Threads (``sys.path``) are also separate. The new environment has no ``sys.argv`` variable. It has new standard I/O stream file objects ``sys.stdin``, ``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 sub-interpreter. This thread state is made in the current thread state. |