From: Gregory P. Smith Date: Mon, 1 Mar 2010 02:56:44 +0000 (+0000) Subject: Merged revisions 78532 via svnmerge from X-Git-Tag: v3.2a1~1601 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=af6d3b83fd765fb28ba431928b20495cd152f3c2;p=python Merged revisions 78532 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r78532 | gregory.p.smith | 2010-02-28 18:53:24 -0800 (Sun, 28 Feb 2010) | 2 lines Fix the new test on windows (skip it, its posix only) ........ --- diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index 685fabe697..3229a8c81e 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -799,6 +799,7 @@ class ProcessTestCaseNoPoll(ProcessTestCase): class HelperFunctionTests(unittest.TestCase): + @unittest.skipIf(mswindows, "errno and EINTR make no sense on windows") def test_eintr_retry_call(self): record_calls = [] def fake_os_func(*args):