diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-31 10:02:56 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-10-31 10:02:56 (GMT) |
commit | 4deb16dd7585582276714cae2d98b55db7fe6568 (patch) | |
tree | 04e201cd4c12b0b8a03e654f1ddff8e84ee88a42 /Doc/c-api | |
parent | 6a5c7c341ac654bda89b2d111aecb6d0a08fe6a2 (diff) | |
download | cpython-4deb16dd7585582276714cae2d98b55db7fe6568.zip cpython-4deb16dd7585582276714cae2d98b55db7fe6568.tar.gz cpython-4deb16dd7585582276714cae2d98b55db7fe6568.tar.bz2 |
Remove already dropped function PySys_GetFile from documentation.
Thanks to Daniel Müllner from docs@
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/sys.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/c-api/sys.rst b/Doc/c-api/sys.rst index 252bd1a..9760dca 100644 --- a/Doc/c-api/sys.rst +++ b/Doc/c-api/sys.rst @@ -61,12 +61,6 @@ accessible to C code. They all work with the current interpreter thread's Return the object *name* from the :mod:`sys` module or *NULL* if it does not exist, without setting an exception. -.. c:function:: FILE *PySys_GetFile(char *name, FILE *def) - - Return the :c:type:`FILE*` associated with the object *name* in the - :mod:`sys` module, or *def* if *name* is not in the module or is not associated - with a :c:type:`FILE*`. - .. c:function:: int PySys_SetObject(char *name, PyObject *v) Set *name* in the :mod:`sys` module to *v* unless *v* is *NULL*, in which |