This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author alexandre.vassalotti
Recipients
Date 2007-08-15.16:13:12
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This patch fixes a small bug in the flags of io.StringIO:

    >>> import io
    >>> s = io.StringIO()
    >>> s.writable()
    False
    >>> s.seekable()
    False
    >>> s.readable()
    False

All the flags should have the value True. 
History
Date User Action Args
2007-08-23 15:59:41adminlinkissue1774828 messages
2007-08-23 15:59:41admincreate