This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients amaury.forgeotdarc, benjamin.peterson, ncoghlan, rhettinger, terry.reedy
Date 2008-08-13.18:09:21
SpamBayes Score 5.049002e-06
Marked as misclassified No
Message-id <1218650962.27.0.203893298982.issue3473@psf.upfronthosting.co.za>
In-reply-to
Content
Another use case: upon reading A.Baxter's Porting to 3 talk, I realized,
slightly generalizing from his example, that
print(s.join(map(str,it))) == print(*it,sep=s) -- or would, except that
it currently has to be written non-intuitively as print(sep=s,*it),
which I might not have tried except for knowing about this issue.

Given that many have problems with .join and that most uses are to
produce immediate output not otherwise processed, I think having the
replacement work in the way many would expect would be a win.
So I hope this makes the next beta.
History
Date User Action Args
2008-08-13 18:09:22terry.reedysetrecipients: + terry.reedy, rhettinger, amaury.forgeotdarc, ncoghlan, benjamin.peterson
2008-08-13 18:09:22terry.reedysetmessageid: <1218650962.27.0.203893298982.issue3473@psf.upfronthosting.co.za>
2008-08-13 18:09:21terry.reedylinkissue3473 messages
2008-08-13 18:09:21terry.reedycreate