]> granicus.if.org Git - python/commitdiff
Merged revisions 78533 via svnmerge from
authorGregory P. Smith <greg@mad-scientist.com>
Mon, 1 Mar 2010 02:58:43 +0000 (02:58 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Mon, 1 Mar 2010 02:58:43 +0000 (02:58 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r78533 | gregory.p.smith | 2010-02-28 18:56:44 -0800 (Sun, 28 Feb 2010) | 9 lines

  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)
  ........
................

Lib/test/test_subprocess.py

index 4db8033ac795961cf3cc1abeda9137dc13f746ac..9ab06dc4e8bce5b9f3eb84b3e53ff747edb73ebd 100644 (file)
@@ -816,6 +816,7 @@ if getattr(subprocess, '_has_poll', False):
 
 
 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):