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: buildbot: test_select failure (test_returned_list_identity) on Python 2.6, Windows
Type: Stage:
Components: Extension Modules, Tests Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, vstinner
Priority: normal Keywords: buildbot

Created on 2010-04-19 12:24 by vstinner, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg103587 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2010-04-19 12:24
http://www.python.org/dev/buildbot/builders/x86 XP-5 2.6/builds/147/steps/test/logs/stdio

test_select
test test_select failed -- Traceback (most recent call last):
  File "C:\buildslave\2.6.moore-windows\build\lib\test\test_select.py", line 24, in test_returned_list_identity
    r, w, x = select.select([], [], [], 1)
error: (10022, 'An invalid argument was supplied')
msg103602 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2010-04-19 14:26
The fail looks to be related to #8329 (r79867:trunk, r79868:py3k, r79869:2.6, r79870:3.1).
msg103760 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2010-04-20 21:03
Fixed in r80281.
History
Date User Action Args
2022-04-11 14:57:00adminsetgithub: 52705
2010-04-20 21:03:05benjamin.petersonsetstatus: open -> closed
resolution: fixed
messages: + msg103760
2010-04-19 14:28:18pitrousetnosy: + benjamin.peterson
2010-04-19 14:26:00vstinnersetmessages: + msg103602
title: buildbot: test_select failure on Python 2.6, Windows -> buildbot: test_select failure (test_returned_list_identity) on Python 2.6, Windows
2010-04-19 12:24:34vstinnercreate