Terry J. Reedy <tjre...@udel.edu> added the comment:

I read all the responses as of this timestamp. They left me more persuaded that 
joining objects with a string (or bytes) is explicit enough that the objects 
*must* be coerced to strings.

A problem with coercion in "1 + '2'" is that there is no 'must'.  The desired 
answer could be either 3 or '12', and neither can be converted to the other, so 
don't guess.

The desired answer for "1 + .5" is much more obviously 1.5 rather than either 1 
or 2, plus the former avoids information loss and leaves the option available 
of rounding or converting however one wants.

One tweet answered my question about masking a bug. Suppose 'words' is intended 
to be an iterable of strings.

>>> words = ['This', 'is', 'a', 'list', 'of', 7, 'words']  # Buggy
>>> print(*words)  # Auto-coercion masks the bug.
This is a list of 7 words
>>> '-'.join(words)  # Current .join does not.
Traceback (most recent call last):
  File "<pyshell#8>", line 1, in <module>
    '-'.join(words)
TypeError: sequence item 5: expected str instance, int found

With the proposed change, detection of the bug is delayed, as is already the 
case with print.  How much do we care about this possibility?  One possible 
answer is to add a new method, such as 'joins' or builtin function 'join'.

Given the variety of opinions, I think a PEP and SC decision would be needed.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue43535>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to