On 9/6/05, Guido van Rossum <[EMAIL PROTECTED]> wrote:
> 
> My hypothesis is that there are actually only two use cases that
> matter enough to be supported directly:
> 
> (a) quickly print a bunch of items with spaces in between them and a
> trailing newline
> 
> (b) print one or more items with precise control over each character

Doesn't the write() method of file-like objects already cover (b),
except that it only takes a single argument?  If the need to print
multiple arguments without any separator is so common, could the
write() method be extended to take multiple arguments and just write
them all out? It'd certainly be backward compatible with old code that
called the write() method...

Andrew.
_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to