[issue1145] Allow str.join to join non-string types (as per PEP 3100)

Thomas Lee report at bugs.python.org
Tue Sep 11 13:42:58 CEST 2007


Thomas Lee added the comment:

Oh and an example of usage:

# before the patch
', '.join([str(x) for x in [1, 2, 3]])

# after the patch
', '.join([1, 2, 3])

__________________________________
Tracker <report at bugs.python.org>
<http://bugs.python.org/issue1145>
__________________________________


More information about the Python-bugs-list mailing list