Skip to content

Commit 172a71f

Browse files
aixtoolsMariatta
authored andcommitted
bpo-34558: Add missing parentheses in _aix.py (GH-9017)
p.wait()
1 parent f2ef51f commit 172a71f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Lib/ctypes/_aix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def get_ld_headers(file):
115115
else:
116116
break
117117
p.stdout.close()
118-
p.wait
118+
p.wait()
119119
return ldr_headers
120120

121121
def get_shared(ld_headers):
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Correct typo in Lib/ctypes/_aix.py

0 commit comments

Comments
 (0)