From 172a71f19bb5e9624651850b315f403c460b9699 Mon Sep 17 00:00:00 2001 From: Michael Felt Date: Sat, 1 Sep 2018 04:31:07 +0200 Subject: bpo-34558: Add missing parentheses in _aix.py (GH-9017) p.wait() --- Lib/ctypes/_aix.py | 2 +- Misc/NEWS.d/next/Library/2018-08-31-19-26-55.bpo-34558.MHv582.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 Misc/NEWS.d/next/Library/2018-08-31-19-26-55.bpo-34558.MHv582.rst diff --git a/Lib/ctypes/_aix.py b/Lib/ctypes/_aix.py index 463f60a..190cac6 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 0000000..2672426 --- /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 -- cgit v0.12