[issue37572] email lib bug

2020-12-18 Thread Raymond Hettinger
Change by Raymond Hettinger : -- nosy: +rhettinger nosy_count: 5.0 -> 6.0 pull_requests: +22712 pull_request: https://github.com/python/cpython/pull/23849 ___ Python tracker __

[issue37572] email lib bug

2019-07-13 Thread SilentGhost
SilentGhost added the comment: This seems to be a duplicate of #34424. You'd have to upgrade to the latest 3.7 to get the fix. -- nosy: +SilentGhost resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Unicode names break email header type: -> behavior

[issue37572] email lib bug

2019-07-13 Thread famu xu
famu xu added the comment: import smtplib from email.message import EmailMessage from email.utils import formataddr server = smtplib.SMTP('smtp.xxx.com',port=25) server.login('y...@xxx.com', 'password') msg = EmailMessage() #if address username include Chinese or other multibytes language, it

[issue37572] email lib bug

2019-07-12 Thread Michele Angrisano
Michele Angrisano added the comment: Hi and thank you for opening this issue. What is the behaviour? What is the test you used to reproduce this bug? -- nosy: +mangrisano ___ Python tracker

[issue37572] email lib bug

2019-07-12 Thread famu xu
famu xu added the comment: python 3.7 same -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue37572] email lib bug

2019-07-12 Thread famu xu
New submission from famu xu : file: email\_header_value_parser.py line : encoded_part = part.fold(policy=policy)[:-1] # strip nl modify to: encoded_part = part.fold(policy=policy)[:-2] # strip nl because the nl is "\r\n" -- components: email messages: 347740 nosy: barry, famu xu, r.da