Hello,is concatenation of adjacent strings a useful feature? So far the only use case I've seen is causing me endless hours of debugging when I forget the comma in a tuple of strings, like so:
("first",
"second"
"third")
Which then becomes a tuple of two items, instead of three. It would have
been much better if it produced an error. Is there any good reason that
this feature exists, or would it be better if it were removed?
Regards, Stavros Korokithakis _______________________________________________ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com