[Python-checkins] r73812 - python/trunk/Doc/library/stringio.rst
benjamin.peterson
python-checkins at python.org
Fri Jul 3 16:08:21 CEST 2009
Author: benjamin.peterson
Date: Fri Jul 3 16:08:20 2009
New Revision: 73812
Log:
another cStringIO restriction
Modified:
python/trunk/Doc/library/stringio.rst
Modified: python/trunk/Doc/library/stringio.rst
==============================================================================
--- python/trunk/Doc/library/stringio.rst (original)
+++ python/trunk/Doc/library/stringio.rst Fri Jul 3 16:08:20 2009
@@ -72,8 +72,9 @@
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
More information about the Python-checkins
mailing list