diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-06-15 01:52:14 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-06-15 01:52:14 (GMT) |
commit | 3a0b6aa59bbc1ff204a48c53876d57a2c6bbf818 (patch) | |
tree | 8ff25298640daeaabfda88e7f88862d64e80e6c2 | |
parent | ff180af0572ce64ea7b4bb99957cf0c216adce36 (diff) | |
parent | ef8abfc082daeb6e389dff8859640ed87da0cc12 (diff) | |
download | cpython-3a0b6aa59bbc1ff204a48c53876d57a2c6bbf818.zip cpython-3a0b6aa59bbc1ff204a48c53876d57a2c6bbf818.tar.gz cpython-3a0b6aa59bbc1ff204a48c53876d57a2c6bbf818.tar.bz2 |
merge 3.4 (#21764)
-rw-r--r-- | Doc/library/io.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst index 79f65e0..0c7d3c7 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -353,6 +353,12 @@ I/O Base Classes is usual for each of the lines provided to have a line separator at the end. + .. method:: __del__() + + Prepare for object destruction. :class:`IOBase` provides a default + implementation of this method that calls the instance's + :meth:`~IOBase.close` method. + .. class:: RawIOBase |