bpo-34558: Add missing parentheses in _aix.py (GH-9017)

p.wait()
(cherry picked from commit 172a71f19b)

Co-authored-by: Michael Felt <aixtools@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2018-08-31 22:46:32 -04:00 committed by GitHub
parent 4da71814b3
commit 89c9043ee0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -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):

View file

@ -0,0 +1 @@
Correct typo in Lib/ctypes/_aix.py