]> granicus.if.org Git - python/commitdiff
Add to an XXX comment.
authorGuido van Rossum <guido@python.org>
Wed, 9 May 2007 23:41:10 +0000 (23:41 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 9 May 2007 23:41:10 +0000 (23:41 +0000)
Lib/io.py

index 4ac4e45b5f7739042ab9970acd66ab4d6ffdd8f1..fdf1299330b1709122103505fe7f456a23f20830 100644 (file)
--- a/Lib/io.py
+++ b/Lib/io.py
@@ -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 = ""