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 bisect unittest
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.2, Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, christian.heimes, georg.brandl, jcea, mark.dickinson, python-dev, rhettinger, yselivanov
Priority: normal Keywords: patch

Created on 2012-10-31 20:31 by yselivanov, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test_bisect.patch yselivanov, 2012-10-31 20:31 review
Messages (6)
msg174365 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2012-10-31 20:31
TestInsort.test_vsBuiltinSort is a bit broken, as it doesn't test insorting `list` objects.

Patch attached.
msg174367 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-10-31 20:39
New changeset 838e2b19489e by Andrew Svetlov in branch '3.2':
Issue #16377: Fix bisect unittest.
http://hg.python.org/cpython/rev/838e2b19489e

New changeset f3dd84feeb58 by Andrew Svetlov in branch '3.3':
Merge issue #16377: Fix bisect unittest.
http://hg.python.org/cpython/rev/f3dd84feeb58

New changeset 016d1a1fd601 by Andrew Svetlov in branch 'default':
Merge issue #16377: Fix bisect unittest.
http://hg.python.org/cpython/rev/016d1a1fd601
msg174368 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2012-10-31 20:40
Fixed. Thanks, Yury.
msg174369 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-10-31 20:41
New changeset 8296b686c6de by Mark Dickinson in branch '2.7':
Issue #16377: fix missed test due to incorrect indentation in test_bisect.  Thanks Yury Selivanov.
http://hg.python.org/cpython/rev/8296b686c6de
msg174370 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2012-10-31 20:41
(also in 2.7 :-)
msg174371 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2012-10-31 20:49
Thanks, Mark. I've missed it.
History
Date User Action Args
2022-04-11 14:57:37adminsetgithub: 60581
2012-12-14 15:01:43jceasetnosy: + jcea
2012-10-31 20:49:23asvetlovsetmessages: + msg174371
2012-10-31 20:41:34mark.dickinsonsetnosy: + mark.dickinson
messages: + msg174370
2012-10-31 20:41:12python-devsetmessages: + msg174369
2012-10-31 20:40:45asvetlovsetstage: resolved
2012-10-31 20:40:23asvetlovsetstatus: open -> closed

type: enhancement
components: + Library (Lib)
versions: + Python 3.2, Python 3.4
nosy: + asvetlov

messages: + msg174368
resolution: fixed
2012-10-31 20:39:22python-devsetnosy: + python-dev
messages: + msg174367
2012-10-31 20:31:30yselivanovcreate