diff options
author | Guido van Rossum <guido@python.org> | 2007-05-09 23:41:10 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-05-09 23:41:10 (GMT) |
commit | a5c313dc4dc4a247e3515217bc5f2d56a5c01422 (patch) | |
tree | 07e1993be4cf6e08817acba33e81df25dbf90e27 /Lib | |
parent | 0e02abb791386dc4baa92ad0e3ee9eb59f039629 (diff) | |
download | cpython-a5c313dc4dc4a247e3515217bc5f2d56a5c01422.zip cpython-a5c313dc4dc4a247e3515217bc5f2d56a5c01422.tar.gz cpython-a5c313dc4dc4a247e3515217bc5f2d56a5c01422.tar.bz2 |
Add to an XXX comment.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/io.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -601,7 +601,8 @@ class StringIO(_MemoryIOMixin): # XXX This doesn't work; _MemoryIOMixin's write() and truncate() # methods assume the buffer is mutable. Simply redefining those # to use slice concatenation will make it awfully slow (in fact, - # quadratic in the number of write() calls). + # quadratic in the number of write() calls). Also, there are no + # readline() and readlines() methods. Etc., etc. def __init__(self, inital_string=None): buffer = "" |