mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-34558: Add missing parentheses in _aix.py (GH-9017)
p.wait()
This commit is contained in:
parent
f2ef51f8be
commit
172a71f19b
2 changed files with 2 additions and 1 deletions
|
@ -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):
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Correct typo in Lib/ctypes/_aix.py
|
Loading…
Add table
Add a link
Reference in a new issue