commit | 4f21f985eb09026faa11b7d9580d309c17c05373 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Nov 30 03:07:33 2008 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Nov 30 03:07:33 2008 +0000 |
tree | 0f9237a3668773b7c483a53a6d943d891d8612db | |
parent | 2a1fd059717e480de852f05750e1c892567d4c3b [diff] [blame] |
StringIO.close() stops you from using the buffer, too
diff --git a/Doc/library/stringio.rst b/Doc/library/stringio.rst index 4736fc3..19e1547 100644 --- a/Doc/library/stringio.rst +++ b/Doc/library/stringio.rst
@@ -37,7 +37,8 @@ .. method:: StringIO.close() - Free the memory buffer. + Free the memory buffer. Attempting to do further operations with a closed + :class:`StringIO` object will raise a :exc:`ValueError`. Example usage::