[Python-checkins] cpython (2.7): 'sunos' not 'solaris

benjamin.peterson python-checkins at python.org
Sun May 18 01:34:04 CEST 2014


http://hg.python.org/cpython/rev/ddbe1269d3de
changeset:   90744:ddbe1269d3de
branch:      2.7
user:        Benjamin Peterson <benjamin at python.org>
date:        Sat May 17 16:33:59 2014 -0700
summary:
  'sunos' not 'solaris

files:
  Lib/test/test_posix.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py
--- a/Lib/test/test_posix.py
+++ b/Lib/test/test_posix.py
@@ -195,7 +195,7 @@
         self.fdopen_helper('r', 100)
 
     @unittest.skipUnless(hasattr(posix, 'fdopen') and
-                         not sys.platform.startswith("solaris"),
+                         not sys.platform.startswith("sunos"),
                          'test needs posix.fdopen()')
     def test_fdopen_keeps_fd_open_on_errors(self):
         fd = os.open(test_support.TESTFN, os.O_RDONLY)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list