bpo-34558: Add missing parentheses in _aix.py (GH-9017)
p.wait()
This commit is contained in:
parent
f2ef51f8be
commit
172a71f19b
|
@ -115,7 +115,7 @@ def get_ld_headers(file):
|
||||||
else:
|
else:
|
||||||
break
|
break
|
||||||
p.stdout.close()
|
p.stdout.close()
|
||||||
p.wait
|
p.wait()
|
||||||
return ldr_headers
|
return ldr_headers
|
||||||
|
|
||||||
def get_shared(ld_headers):
|
def get_shared(ld_headers):
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Correct typo in Lib/ctypes/_aix.py
|
Loading…
Reference in New Issue