summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_fcntl.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-03-28 01:14:56 (GMT)
committerGuido van Rossum <guido@python.org>2001-03-28 01:14:56 (GMT)
commit1417144f33e70d1d58a620159ee7fb317e681dea (patch)
tree7b72569ddaadea04b432ddab659d730a7115cf15 /Lib/test/test_fcntl.py
parent2b73fe9956bb46d100b65ca03f41399405ee89f6 (diff)
downloadcpython-1417144f33e70d1d58a620159ee7fb317e681dea.zip
cpython-1417144f33e70d1d58a620159ee7fb317e681dea.tar.gz
cpython-1417144f33e70d1d58a620159ee7fb317e681dea.tar.bz2
Based on info from Jens@digicool.com, add 'darwin1' to the list of
BSD-style OS'es. Makes sense, really.
Diffstat (limited to 'Lib/test/test_fcntl.py')
-rwxr-xr-xLib/test/test_fcntl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_fcntl.py b/Lib/test/test_fcntl.py
index b6d4dfa..3da079d 100755
--- a/Lib/test/test_fcntl.py
+++ b/Lib/test/test_fcntl.py
@@ -16,7 +16,7 @@ rv = fcntl.fcntl(f.fileno(), FCNTL.F_SETFL, os.O_NONBLOCK)
if verbose:
print 'Status from fnctl with O_NONBLOCK: ', rv
-if sys.platform in ('netbsd1', 'Darwin1.2',
+if sys.platform in ('netbsd1', 'Darwin1.2', 'darwin1',
'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5',
'bsdos2', 'bsdos3', 'bsdos4',
'openbsd', 'openbsd2'):