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: Fix a NameError in test_descr
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: Claudiu.Popa, terry.reedy
Priority: normal Keywords: patch

Created on 2014-06-15 08:43 by Claudiu.Popa, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test_descr_nameerror.patch Claudiu.Popa, 2014-06-15 08:43 review
Messages (3)
msg220619 - (view) Author: PCManticore (Claudiu.Popa) * (Python triager) Date: 2014-06-15 08:43
Hi. Here's a patch which uses `self.fail` in test_descr instead of `raise TestFailed`.
msg221117 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-06-20 19:24
(Message sent to 21768 by incomplete edit of previous message)
New changeset ec0aae4df38b by Terry Jan Reedy in branch '3.4':
Issue #21768: fix NameError in test_pydescr. Patch by Claudiu Popa.
http://hg.python.org/cpython/rev/ec0aae4df38b

It would be helpful if you could run pylint on all three current versions and mark which have the error. Once you have the repository, you can make semi-clones that share the one repository and only have separate working directories. A short download script can pull once and update all three.
msg221118 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-06-20 19:28
Could not find error in 2.7.
History
Date User Action Args
2022-04-11 14:58:04adminsetgithub: 65968
2014-06-20 19:28:37terry.reedysetstatus: open -> closed
type: behavior
messages: + msg221118

resolution: fixed
stage: resolved
2014-06-20 19:24:27terry.reedysetmessages: + msg221117
versions: - Python 2.7
2014-06-20 19:11:47terry.reedysetassignee: terry.reedy

nosy: + terry.reedy
versions: + Python 2.7, Python 3.4
2014-06-15 08:43:52Claudiu.Popacreate