summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Felt <aixtools@users.noreply.github.com>2018-09-01 04:31:07 +0200
committerMariatta <Mariatta@users.noreply.github.com>2018-08-31 19:31:07 -0700
commit172a71f19bb5e9624651850b315f403c460b9699 (patch)
treed9f209ed75521fc895b5585c23e3b68052e67ea7
parentf2ef51f8bec525b21e52988880c8a029642795ed (diff)
downloadcpython-git-172a71f19bb5e9624651850b315f403c460b9699.tar.gz
bpo-34558: Add missing parentheses in _aix.py (GH-9017)
p.wait()
-rw-r--r--Lib/ctypes/_aix.py2
-rw-r--r--Misc/NEWS.d/next/Library/2018-08-31-19-26-55.bpo-34558.MHv582.rst1
2 files changed, 2 insertions, 1 deletions
diff --git a/Lib/ctypes/_aix.py b/Lib/ctypes/_aix.py
index 463f60a284..190cac6507 100644
--- a/Lib/ctypes/_aix.py
+++ b/Lib/ctypes/_aix.py
@@ -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):
diff --git a/Misc/NEWS.d/next/Library/2018-08-31-19-26-55.bpo-34558.MHv582.rst b/Misc/NEWS.d/next/Library/2018-08-31-19-26-55.bpo-34558.MHv582.rst
new file mode 100644
index 0000000000..267242690e
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-08-31-19-26-55.bpo-34558.MHv582.rst
@@ -0,0 +1 @@
+Correct typo in Lib/ctypes/_aix.py