summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMichael Felt <aixtools@users.noreply.github.com>2019-04-08 00:51:33 (GMT)
committerInada Naoki <songofacandy@gmail.com>2019-04-08 00:51:33 (GMT)
commitb7eec94c0e86f8ac318b135ca9146fff32b7203a (patch)
treea8490dee08abace8b20ee69f7e8408b4773c8c54 /Lib
parent6463ba3061bd311413d2951dc83c565907e10459 (diff)
downloadcpython-b7eec94c0e86f8ac318b135ca9146fff32b7203a.zip
cpython-b7eec94c0e86f8ac318b135ca9146fff32b7203a.tar.gz
cpython-b7eec94c0e86f8ac318b135ca9146fff32b7203a.tar.bz2
bpo-36503: remove references to 'aix3' and 'aix4' (GH-12658)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/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 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)