diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-04 18:50:53 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-04 18:50:53 (GMT) |
commit | 4adb288f4eaea3a21295c11a3ca49313d7da8cc7 (patch) | |
tree | 84821f5b594c91134847979997663ce070cbfc57 /Doc/library/filesys.rst | |
parent | 6e40e27ecfe417ab4633c46b8ac99d30ebad6b36 (diff) | |
download | cpython-4adb288f4eaea3a21295c11a3ca49313d7da8cc7.zip cpython-4adb288f4eaea3a21295c11a3ca49313d7da8cc7.tar.gz cpython-4adb288f4eaea3a21295c11a3ca49313d7da8cc7.tar.bz2 |
Issue #7631: Fix undefined references to the "built-in file object", which
has ceased to be.
Diffstat (limited to 'Doc/library/filesys.rst')
-rw-r--r-- | Doc/library/filesys.rst | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Doc/library/filesys.rst b/Doc/library/filesys.rst index b341f5f..31eaf0d 100644 --- a/Doc/library/filesys.rst +++ b/Doc/library/filesys.rst @@ -26,14 +26,13 @@ in this chapter is: .. seealso:: - Section :ref:`bltin-file-objects` - A description of Python's built-in file objects. - Module :mod:`os` Operating system interfaces, including functions to work with files at a lower level than the built-in file object. Module :mod:`io` - Python's framework for dealing with I/O including reading and writing - files. + Python's built-in I/O library, including both abstract classes and + some concrete classes such as file I/O. + Built-in function :func:`open` + The standard way to open files for reading and writing with Python. |