[Python-checkins] bpo-34558: Add missing parentheses in _aix.py (GH-9017)

Mariatta webhook-mailer at python.org
Fri Aug 31 22:31:11 EDT 2018


https://github.com/python/cpython/commit/172a71f19bb5e9624651850b315f403c460b9699
commit: 172a71f19bb5e9624651850b315f403c460b9699
branch: master
author: Michael Felt <aixtools at users.noreply.github.com>
committer: Mariatta <Mariatta at users.noreply.github.com>
date: 2018-08-31T19:31:07-07:00
summary:

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

p.wait()

files:
A Misc/NEWS.d/next/Library/2018-08-31-19-26-55.bpo-34558.MHv582.rst
M Lib/ctypes/_aix.py

diff --git a/Lib/ctypes/_aix.py b/Lib/ctypes/_aix.py
index 463f60a2849f..190cac6507ed 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 000000000000..267242690eef
--- /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



More information about the Python-checkins mailing list