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: test_posix.py and test_wait4.py having missing import on win32
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: brett.cannon, r.david.murray, tdriscol
Priority: normal Keywords:

Created on 2009-03-30 18:40 by tdriscol, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg84607 - (view) Author: Tim Driscoll (tdriscol) Date: 2009-03-30 18:40
These are supposed to raise a unittest.SkipTest on win32 but the
unittest import is missing.  The patch just adds the missing import


See patch here:
http://codereview.appspot.com/32074/show
msg85019 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2009-04-01 15:29
Fixed in trunk as part of the change to the way regrtest handles
ImportErrors.
History
Date User Action Args
2022-04-11 14:56:47adminsetgithub: 49863
2009-04-01 15:29:32r.david.murraysetstatus: open -> closed

nosy: + r.david.murray
messages: + msg85019

resolution: fixed
stage: resolved
2009-03-30 18:40:16tdriscolcreate