diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2011-05-25 16:17:25 (GMT) |
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-05-25 16:17:25 (GMT) |
| commit | b46004c94f59af1adc081d2a89d9e3f73998ee59 (patch) | |
| tree | 8173b551d7176c189b0adc4dcf91a488e5302830 | |
| parent | dac9acedfd9930d2368172c2cec13b6077153a70 (diff) | |
| download | cpython-b46004c94f59af1adc081d2a89d9e3f73998ee59.zip cpython-b46004c94f59af1adc081d2a89d9e3f73998ee59.tar.gz cpython-b46004c94f59af1adc081d2a89d9e3f73998ee59.tar.bz2 | |
Issue #12045: Avoid duplicate execution of command in ctypes.util._get_soname().
Patch by Sijin Joseph.
| -rw-r--r-- | Lib/ctypes/util.py | 4 | ||||
| -rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Lib/ctypes/util.py b/Lib/ctypes/util.py index e4c204d..6815f94 100644 --- a/Lib/ctypes/util.py +++ b/Lib/ctypes/util.py @@ -137,9 +137,7 @@ elif os.name == "posix": rv = f.close() if rv == 10: raise OSError('objdump command not found') - with contextlib.closing(os.popen(cmd)) as f: - data = f.read() - res = re.search(r'\sSONAME\s+([^\s]+)', data) + res = re.search(r'\sSONAME\s+([^\s]+)', dump) if not res: return None return res.group(1) @@ -161,6 +161,9 @@ Core and Builtins Library ------- +- Issue #12045: Avoid duplicate execution of command in ctypes.util._get_soname(). + Patch by Sijin Joseph. + - Issue #10818: Remove the Tk GUI and the serve() function of the pydoc module, pydoc -g has been deprecated in Python 3.2 and it has a new enhanced web server. |
