Skip to content

Commit 89c9043

Browse files
bpo-34558: Add missing parentheses in _aix.py (GH-9017)
p.wait() (cherry picked from commit 172a71f) Co-authored-by: Michael Felt <aixtools@users.noreply.github.com>
1 parent 4da7181 commit 89c9043

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

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)