Guido van Rossum wrote: > Is there anything that you (or anyone else!) would really like to see > added to or fixed in 3.0a2? Now's the time!
I am currently having a look at http://bugs.python.org/issue1460 . It's a problem in the utf-7 decoder (there is no such function PyUnicode_DecodeUTF7Stateful), but I was surprised to see that codec.StreamReader duplicates a lot of code already present in io.py: an underlying binary stream, a decoder, a buffer (of 72 chars), some code to handle \r\n and so on. I wonder if it is possible to remove this class: are there differences between codec.StreamReader and io.TextIOWrapper ? -- Amaury Forgeot d'Arc _______________________________________________ Python-3000 mailing list Python-3000@python.org http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com