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.
Created on 2011年06月08日 10:32 by DDarko, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (3) | |||
|---|---|---|---|
| msg137899 - (view) | Author: DDarko (DDarko) | Date: 2011年06月08日 10:32 | |
File "/usr/lib/python3.2/smtplib.py", line 166, in _quote_periods def _quote_periods(bindata): return re.sub(br'(?m)^\.', '..', bindata) should be: return re.sub(br'(?m)^\.', b'..', bindata) |
|||
| msg138021 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年06月09日 19:21 | |
New changeset 077b016e4a6d by R David Murray in branch '3.2': #12283: Fixed regression in smtplib quoting of leading dots in DATA. http://hg.python.org/cpython/rev/077b016e4a6d New changeset cedceeb45030 by R David Murray in branch 'default': merge #12283: Fixed regression in smtplib quoting of leading dots in DATA. http://hg.python.org/cpython/rev/cedceeb45030 |
|||
| msg138022 - (view) | Author: R. David Murray (r.david.murray) * (Python committer) | Date: 2011年06月09日 19:25 | |
Thanks for the report. I broke that when I refactored the code, and unfortunately there was no existing test that tested dot quoting. There is now. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:18 | admin | set | github: 56492 |
| 2013年02月14日 16:01:41 | serhiy.storchaka | link | issue11837 superseder |
| 2011年06月09日 19:25:05 | r.david.murray | set | status: open -> closed resolution: fixed messages: + msg138022 stage: patch review -> resolved |
| 2011年06月09日 19:21:50 | python-dev | set | nosy:
+ python-dev messages: + msg138021 |
| 2011年06月08日 11:28:14 | pitrou | set | versions:
+ Python 3.3 nosy: + r.david.murray components: + Library (Lib), - Extension Modules type: behavior stage: patch review |
| 2011年06月08日 10:32:31 | DDarko | create | |