diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-09-10 18:50:38 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-09-10 18:50:38 (GMT) |
commit | 4f5e298075f512d2ca3376ff35d6710b7317024b (patch) | |
tree | e799c7806fc489f0d124eaf189d182132137c165 /Doc | |
parent | a4e4ae27fc7e3d88b5d102a85d1cf1e90beb710e (diff) | |
download | cpython-4f5e298075f512d2ca3376ff35d6710b7317024b.zip cpython-4f5e298075f512d2ca3376ff35d6710b7317024b.tar.gz cpython-4f5e298075f512d2ca3376ff35d6710b7317024b.tar.bz2 |
add reference to file object
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/fcntl.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/fcntl.rst b/Doc/library/fcntl.rst index e21c1ed..dd76d65 100644 --- a/Doc/library/fcntl.rst +++ b/Doc/library/fcntl.rst @@ -16,8 +16,8 @@ interface to the :cfunc:`fcntl` and :cfunc:`ioctl` Unix routines. All functions in this module take a file descriptor *fd* as their first argument. This can be an integer file descriptor, such as returned by -``sys.stdin.fileno()``, or a file object, such as ``sys.stdin`` itself, which -provides a :meth:`fileno` which returns a genuine file descriptor. +``sys.stdin.fileno()``, or a :class:`io.IOBase` object, such as ``sys.stdin`` +itself, which provides a :meth:`fileno` that returns a genuine file descriptor. The module defines the following functions: |