]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-34558: Add missing parentheses in _aix.py (GH-9017)
authorMichael Felt <aixtools@users.noreply.github.com>
Sat, 1 Sep 2018 02:31:07 +0000 (04:31 +0200)
committerMariatta <Mariatta@users.noreply.github.com>
Sat, 1 Sep 2018 02:31:07 +0000 (19:31 -0700)
p.wait()

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