bpo-36503: remove references to 'aix3' and 'aix4' (GH-12658) · python/cpython@b7eec94 (original) (raw)

`@@ -34,7 +34,7 @@ def get_lockdata():

`

34

34

`fcntl.F_WRLCK, 0)

`

35

35

`elif sys.platform.startswith('gnukfreebsd'):

`

36

36

`lockdata = struct.pack('qqihhi', 0, 0, 0, fcntl.F_WRLCK, 0, 0)

`

37

``

`-

elif sys.platform in ['aix3', 'aix4', 'hp-uxB', 'unixware7']:

`

``

37

`+

elif sys.platform in ['hp-uxB', 'unixware7']:

`

38

38

`lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0)

`

39

39

`else:

`

40

40

`lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0)

`