summaryrefslogtreecommitdiffstats
path: root/Doc/library/filesys.rst
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-01-04 18:50:53 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-01-04 18:50:53 (GMT)
commit4adb288f4eaea3a21295c11a3ca49313d7da8cc7 (patch)
tree84821f5b594c91134847979997663ce070cbfc57 /Doc/library/filesys.rst
parent6e40e27ecfe417ab4633c46b8ac99d30ebad6b36 (diff)
downloadcpython-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.rst9
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.