At this point, test-patchbomb-tls.t almost passes on Python 3, but I'm
not really sure what the issue is: we just get a `abort: Connection
unexpectedly closed` that doesn't make sense to me.
Details
Details
- Reviewers
- None
- Group Reviewers
hg-reviewers - Commits
- rHG8919cc4f63b4: patchbomb: python 3 really wants those email addresses in unicode
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
Event Timeline
Comment Actions
- sendmail(sender_addr, to + bcc + cc, fp.getvalue())
+ alldests = to + bcc + cc
+ alldests = [pycompat.strurl(d) for d in alldests]
+ sendmail(sender_addr, alldests, fp.getvalue())
encoding.strfromlocal() to avoid unicode exception.