]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-34558: Add missing parentheses in _aix.py (GH-9017)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 1 Sep 2018 02:46:32 +0000 (22:46 -0400)
committerGitHub <noreply@github.com>
Sat, 1 Sep 2018 02:46:32 +0000 (22:46 -0400)
p.wait()
(cherry picked from commit 172a71f19bb5e9624651850b315f403c460b9699)

Co-authored-by: Michael Felt <aixtools@users.noreply.github.com>
Lib/ctypes/_aix.py
Misc/NEWS.d/next/Library/2018-08-31-19-26-55.bpo-34558.MHv582.rst [new file with mode: 0644]

index 463f60a2849f3669c3fb2ee466c06dd077d9c517..190cac6507edef91be37691be81882e5a63688f4 100644 (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):
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 (file)
index 0000000..2672426
--- /dev/null
@@ -0,0 +1 @@
+Correct typo in Lib/ctypes/_aix.py