Skip to content

Commit b7eec94

Browse files
aixtoolsmethane
authored andcommitted
bpo-36503: remove references to 'aix3' and 'aix4' (GH-12658)
1 parent 6463ba3 commit b7eec94

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Lib/test/test_fcntl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def get_lockdata():
3434
fcntl.F_WRLCK, 0)
3535
elif sys.platform.startswith('gnukfreebsd'):
3636
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']:
3838
lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0)
3939
else:
4040
lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0)

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -476,6 +476,7 @@ Jim Fasarakis-Hilliard
476476
Mark Favas
477477
Sergey Fedoseev
478478
Boris Feld
479+
M. Felt
479480
Thomas Fenzl
480481
Niels Ferguson
481482
Francisco Fernández Castaño
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Remove references to "aix3" and "aix4".
2+
Patch by M. Felt.

setup.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1882,9 +1882,6 @@ def detect_tkinter(self):
18821882
libs.append('tk'+ version)
18831883
libs.append('tcl'+ version)
18841884

1885-
if HOST_PLATFORM in ['aix3', 'aix4']:
1886-
libs.append('ld')
1887-
18881885
# Finally, link with the X11 libraries (not appropriate on cygwin)
18891886
if not CYGWIN:
18901887
libs.append('X11')

0 commit comments

Comments
 (0)