Skip to content

Commit

Permalink
bpo-34558: Add missing parentheses in _aix.py (GH-9017)
Browse files Browse the repository at this point in the history
p.wait()
(cherry picked from commit 172a71f)

Co-authored-by: Michael Felt <aixtools@users.noreply.github.com>
  • Loading branch information
miss-islington and aixtools committed Sep 1, 2018
1 parent 4da7181 commit 89c9043
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/ctypes/_aix.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def get_ld_headers(file):
else:
break
p.stdout.close()
p.wait
p.wait()
return ldr_headers

def get_shared(ld_headers):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Correct typo in Lib/ctypes/_aix.py

0 comments on commit 89c9043

Please sign in to comment.