diff options
author | Benjamin Peterson <benjamin@python.org> | 2017-09-29 05:44:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-29 05:44:27 (GMT) |
commit | 288d1daadaddf6ae35cf666138ba4b5d07449657 (patch) | |
tree | 1cfefe910f99901373d7253bf9be9c5074dee0ea /Lib/test/test_fcntl.py | |
parent | a106aec2ed6ba171838ca7e6ba43c4e722bbecd1 (diff) | |
download | cpython-288d1daadaddf6ae35cf666138ba4b5d07449657.zip cpython-288d1daadaddf6ae35cf666138ba4b5d07449657.tar.gz cpython-288d1daadaddf6ae35cf666138ba4b5d07449657.tar.bz2 |
remove support for BSD/OS (closes bpo-31624) (#3812)
Diffstat (limited to 'Lib/test/test_fcntl.py')
-rw-r--r-- | Lib/test/test_fcntl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_fcntl.py b/Lib/test/test_fcntl.py index e3b7ed2..acd5c7c 100644 --- a/Lib/test/test_fcntl.py +++ b/Lib/test/test_fcntl.py @@ -22,7 +22,7 @@ def get_lockdata(): else: start_len = "qq" - if (sys.platform.startswith(('netbsd', 'freebsd', 'openbsd', 'bsdos')) + if (sys.platform.startswith(('netbsd', 'freebsd', 'openbsd')) or sys.platform == 'darwin'): if struct.calcsize('l') == 8: off_t = 'l' |