
python-checkins at python
May 7, 2012, 7:24 PM
Post #1 of 1
(32 views)
Permalink
|
|
cpython (3.2): remove basically bitrotted XXXs
|
|
http://hg.python.org/cpython/rev/197f47238753 changeset: 76831:197f47238753 branch: 3.2 parent: 76824:2b1cc84bf1d9 user: Benjamin Peterson <benjamin [at] python> date: Mon May 07 22:23:48 2012 -0400 summary: remove basically bitrotted XXXs files: Lib/io.py | 9 --------- 1 files changed, 0 insertions(+), 9 deletions(-) diff --git a/Lib/io.py b/Lib/io.py --- a/Lib/io.py +++ b/Lib/io.py @@ -34,15 +34,6 @@ """ # 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 [at] python>, " "Mike Verdone <mike.verdone [at] gmail>, " "Mark Russell <mark.russell [at] zen>, " -- Repository URL: http://hg.python.org/cpython
|