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: Lib/test/sortperf.py fails to run
Type: Stage:
Components: Tests Versions: Python 3.1, Python 3.2, Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, pyfex
Priority: normal Keywords: patch

Created on 2010-03-25 13:04 by pyfex, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
sortperf.diff pyfex, 2010-03-25 13:04 Fix for Lib/test/sortperf.py
Messages (2)
msg101693 - (view) Author: Patrick Sabin (pyfex) Date: 2010-03-25 13:04
There is a test file Lib/test/sortperf.py, which isn't properly updated
to python3, because it considers map and range returning a list instead of an iterator and therefore throwing an exception when run. I have attached a patch to fix it.
msg112281 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-08-01 08:07
Thanks, fixed in r83390.
History
Date User Action Args
2022-04-11 14:56:59adminsetgithub: 52477
2010-08-01 08:07:54georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg112281

resolution: fixed
2010-03-25 13:04:26pyfexcreate