diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2010-03-01 02:58:43 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2010-03-01 02:58:43 (GMT) |
commit | 5cab28180bb2bdfa21fa8e1a7162d26e0107f89b (patch) | |
tree | 5338a004f567bfc60f51192d67759438613453ea /Lib/test/test_subprocess.py | |
parent | 3fff44d1c986d93348679594477351d8d26d0542 (diff) | |
download | cpython-5cab28180bb2bdfa21fa8e1a7162d26e0107f89b.zip cpython-5cab28180bb2bdfa21fa8e1a7162d26e0107f89b.tar.gz cpython-5cab28180bb2bdfa21fa8e1a7162d26e0107f89b.tar.bz2 |
Merged revisions 78533 via svnmerge from
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)
........
................
Diffstat (limited to 'Lib/test/test_subprocess.py')
-rw-r--r-- | Lib/test/test_subprocess.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index 4db8033..9ab06dc 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -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): |