summaryrefslogtreecommitdiffstats
path: root/Lib/io.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-05-08 02:23:48 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-05-08 02:23:48 (GMT)
commit3b66623a294af464b88da25bdbc9057ce82d0ccf (patch)
tree8530cdf8480e4d39facb9dcbe75f975d5cbe5201 /Lib/io.py
parentda029fb293d7b389ad54bd843966a266fb4de615 (diff)
downloadcpython-3b66623a294af464b88da25bdbc9057ce82d0ccf.zip
cpython-3b66623a294af464b88da25bdbc9057ce82d0ccf.tar.gz
cpython-3b66623a294af464b88da25bdbc9057ce82d0ccf.tar.bz2
remove basically bitrotted XXXs
Diffstat (limited to 'Lib/io.py')
-rw-r--r--Lib/io.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/Lib/io.py b/Lib/io.py
index 87fab92..a59a75a 100644
--- a/Lib/io.py
+++ b/Lib/io.py
@@ -34,15 +34,6 @@ DEFAULT_BUFFER_SIZE
"""
# New I/O library conforming to PEP 3116.
-# XXX edge cases when switching between reading/writing
-# XXX need to support 1 meaning line-buffered
-# XXX whenever an argument is None, use the default value
-# XXX read/write ops should check readable/writable
-# XXX buffered readinto should work with arbitrary buffer objects
-# XXX use incremental encoder for text output, at least for UTF-16 and UTF-8-SIG
-# XXX check writable, readable and seekable in appropriate places
-
-
__author__ = ("Guido van Rossum <guido@python.org>, "
"Mike Verdone <mike.verdone@gmail.com>, "
"Mark Russell <mark.russell@zen.co.uk>, "