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.

classification
Title: Typo in response in smtpd
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Hoolean, python-dev
Priority: normal Keywords: patch

Created on 2015-04-04 23:47 by Hoolean, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
correction.patch Hoolean, 2015-04-04 23:47 review
Messages (2)
msg240097 - (view) Author: (Hoolean) Date: 2015-04-04 23:47
A spelling mistake is present: in all other instances in the class, the string is ' [SP <mail-parameters>]', yet at this line it is [incorrectly] ' [SP <mail parameters]', missing a '-' and a '>' character.

I have attached a patch correcting this.
msg240121 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-04-05 14:03
New changeset cc2c7aa2d7a6 by Benjamin Peterson in branch '3.4':
fix extended command syntax (closes #23872)
https://hg.python.org/cpython/rev/cc2c7aa2d7a6

New changeset 2c89c1c34e19 by Benjamin Peterson in branch 'default':
merge 3.4 (#23872)
https://hg.python.org/cpython/rev/2c89c1c34e19
History
Date User Action Args
2022-04-11 14:58:15adminsetgithub: 68060
2015-04-05 14:03:31python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg240121

resolution: fixed
stage: commit review -> resolved
2015-04-05 14:03:02benjamin.petersonsetversions: - Python 2.7
2015-04-05 04:25:27ezio.melottisetstage: commit review
versions: + Python 2.7, Python 3.4, Python 3.5
2015-04-04 23:47:05Hooleancreate