diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-07-03 14:11:15 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-07-03 14:11:15 (GMT) |
commit | a1c38c19a0f5b27b0c45984ec64d92423a167c12 (patch) | |
tree | c1bb966985a29dac40571a9fedaab41d10cb4cfe /Doc | |
parent | 422ef59ba916d116608b43d328fb204c99f8c636 (diff) | |
download | cpython-a1c38c19a0f5b27b0c45984ec64d92423a167c12.zip cpython-a1c38c19a0f5b27b0c45984ec64d92423a167c12.tar.gz cpython-a1c38c19a0f5b27b0c45984ec64d92423a167c12.tar.bz2 |
Merged revisions 73812 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73812 | benjamin.peterson | 2009-07-03 09:08:20 -0500 (Fri, 03 Jul 2009) | 1 line
another cStringIO restriction
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stringio.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/stringio.rst b/Doc/library/stringio.rst index f7f6771..30a5bac 100644 --- a/Doc/library/stringio.rst +++ b/Doc/library/stringio.rst @@ -72,8 +72,9 @@ made more efficient by using the function :func:`StringIO` from this module instead. Since this module provides a factory function which returns objects of built-in -types, there's no way to build your own version using subclassing. Use the -original :mod:`StringIO` module in that case. +types, there's no way to build your own version using subclassing. It's not +possible to set attributes on it. Use the original :mod:`StringIO` module in +those cases. Unlike the memory files implemented by the :mod:`StringIO` module, those provided by this module are not able to accept Unicode strings that cannot be |