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: duplicate test names in Lib/test/test_dis.py
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ncoghlan, python-dev, xdegaye
Priority: normal Keywords: patch

Created on 2013-09-28 19:13 by xdegaye, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
duplicate_test_name.patch xdegaye, 2013-09-28 19:13 review
Messages (2)
msg198542 - (view) Author: Xavier de Gaye (xdegaye) * (Python triager) Date: 2013-09-28 19:13
Duplicate method names:
./Lib/test/test_dis.py:250 DisTests.test_big_linenos
./Lib/test/test_dis.py:294 DisTests.test_dis_object

The attached patch fixes this.
msg198592 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-09-29 14:58
New changeset 9922b2cda52c by Benjamin Peterson in branch '3.3':
fix duplicate test names in test_dis (closes #19117)
http://hg.python.org/cpython/rev/9922b2cda52c

New changeset 971965daadfb by Benjamin Peterson in branch 'default':
merge 3.3 (#19117)
http://hg.python.org/cpython/rev/971965daadfb
History
Date User Action Args
2022-04-11 14:57:51adminsetgithub: 63316
2013-09-29 14:58:36python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg198592

resolution: fixed
stage: resolved
2013-09-28 19:13:56xdegayecreate