diff options
-rw-r--r-- | Doc/library/stringio.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/stringio.rst b/Doc/library/stringio.rst index 4736fc3a7c..19e15473fd 100644 --- a/Doc/library/stringio.rst +++ b/Doc/library/stringio.rst @@ -37,7 +37,8 @@ The following methods of :class:`StringIO` objects require special mention: .. 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:: |