diff options
author | Michael Felt <aixtools@users.noreply.github.com> | 2019-04-08 00:51:33 (GMT) |
---|---|---|
committer | Inada Naoki <songofacandy@gmail.com> | 2019-04-08 00:51:33 (GMT) |
commit | b7eec94c0e86f8ac318b135ca9146fff32b7203a (patch) | |
tree | a8490dee08abace8b20ee69f7e8408b4773c8c54 /Lib/test/test_fcntl.py | |
parent | 6463ba3061bd311413d2951dc83c565907e10459 (diff) | |
download | cpython-b7eec94c0e86f8ac318b135ca9146fff32b7203a.zip cpython-b7eec94c0e86f8ac318b135ca9146fff32b7203a.tar.gz cpython-b7eec94c0e86f8ac318b135ca9146fff32b7203a.tar.bz2 |
bpo-36503: remove references to 'aix3' and 'aix4' (GH-12658)
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 acd5c7c..5d4abe3 100644 --- a/Lib/test/test_fcntl.py +++ b/Lib/test/test_fcntl.py @@ -34,7 +34,7 @@ def get_lockdata(): fcntl.F_WRLCK, 0) elif sys.platform.startswith('gnukfreebsd'): lockdata = struct.pack('qqihhi', 0, 0, 0, fcntl.F_WRLCK, 0, 0) - elif sys.platform in ['aix3', 'aix4', 'hp-uxB', 'unixware7']: + elif sys.platform in ['hp-uxB', 'unixware7']: lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0) else: lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0) |