[Python-Dev] OOps (was: No 1.6! (was Re: A REALLY COOL PYTHON FEATURE:))

Skip Montanaro skip@mojam.com (Skip Montanaro)
Tue, 16 May 2000 14:30:08 -0500 (CDT)


    Christian> While I have to say that

    >>>> " ".join("123")
    Christian> '1 2 3'
    >>>> 

    Christian> is not a feature to me but just annoying ;-)

More annoying than

    >>> import string
    >>> string.join("123")
    '1 2 3'

? ;-)

a-sequence-is-a-sequence-ly y'rs,

Skip