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 the name of function in test__encoded_words.py
Type: Stage: resolved
Components: Tests Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: python-dev, r.david.murray, vajrasky
Priority: normal Keywords:

Created on 2013-07-15 15:30 by vajrasky, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg193111 - (view) Author: Vajrasky Kok (vajrasky) * Date: 2013-07-15 15:30
There is a typo in the name of function in test__encoded_words.py.

Python 3.4, Lib/test/test_email/test__encoded_words.py, line 78:

def test_q_escpaed_bytes_preserved(self):

It is supposed to be (I guess):

def test_q_escaped_bytes_preserved(self):
msg193114 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-07-15 16:10
New changeset 6a6ca7c49c2a by R David Murray in branch '3.3':
Closes #18464: fix typo in test name.
http://hg.python.org/cpython/rev/6a6ca7c49c2a

New changeset 47a659bc11c4 by R David Murray in branch 'default':
Merge: Closes #18464: fix typo in test name.
http://hg.python.org/cpython/rev/47a659bc11c4
History
Date User Action Args
2022-04-11 14:57:48adminsetgithub: 62664
2013-07-15 16:10:40python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg193114

resolution: fixed
stage: resolved
2013-07-15 15:30:39vajraskycreate