mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-36503: remove references to 'aix3' and 'aix4' (GH-12658)
This commit is contained in:
parent
6463ba3061
commit
b7eec94c0e
4 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue