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

p.wait()
This commit is contained in:
Michael Felt 2018-09-01 04:31:07 +02:00 committed by Mariatta
parent f2ef51f8be
commit 172a71f19b
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