[Python-checkins] r88013 - python/branches/py3k/Doc/c-api/init.rst

antoine.pitrou python-checkins at python.org
Sat Jan 15 12:44:17 CET 2011


Author: antoine.pitrou
Date: Sat Jan 15 12:44:17 2011
New Revision: 88013

Log:
Standard streams use file descriptors, not FILE pointers.



Modified:
   python/branches/py3k/Doc/c-api/init.rst

Modified: python/branches/py3k/Doc/c-api/init.rst
==============================================================================
--- python/branches/py3k/Doc/c-api/init.rst	(original)
+++ python/branches/py3k/Doc/c-api/init.rst	Sat Jan 15 12:44:17 2011
@@ -100,7 +100,7 @@
    (``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.


More information about the Python-checkins mailing list