[Python-checkins] r78533 - in python/branches/py3k: Lib/test/test_subprocess.py

gregory.p.smith python-checkins at python.org
Mon Mar 1 03:56:44 CET 2010


Author: gregory.p.smith
Date: Mon Mar  1 03:56:44 2010
New Revision: 78533

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


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/test/test_subprocess.py

Modified: python/branches/py3k/Lib/test/test_subprocess.py
==============================================================================
--- python/branches/py3k/Lib/test/test_subprocess.py	(original)
+++ python/branches/py3k/Lib/test/test_subprocess.py	Mon Mar  1 03:56:44 2010
@@ -799,6 +799,7 @@
 
 
 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):


More information about the Python-checkins mailing list