[issue12045] external shell command executed twice in ctypes.util._get_soname

2016-05-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0b15b5371c07 by Antoine Pitrou in branch '2.7': Issue #12045: Avoid duplicate execution of command in ctypes.util._get_soname(). https://hg.python.org/cpython/rev/0b15b5371c07 -- ___ Python tracker

[issue12045] external shell command executed twice in ctypes.util._get_soname

2016-05-10 Thread Martin Panter
Martin Panter added the comment: The same code is in Python 2. It was introduced by Issue 4861 (r68487). -- nosy: +martin.panter versions: +Python 2.7 ___ Python tracker

[issue12045] external shell command executed twice in ctypes.util._get_soname

2011-05-25 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset c540b18b00b9 by Antoine Pitrou in branch 'default': Issue #12045: Avoid duplicate execution of command in ctypes.util._get_soname(). http://hg.python.org/cpython/rev/c540b18b00b9 -- nosy: +python-dev

[issue12045] external shell command executed twice in ctypes.util._get_soname

2011-05-25 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Committed, thank you! -- resolution: - fixed stage: needs patch - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12045

[issue12045] external shell command executed twice in ctypes.util._get_soname

2011-05-16 Thread Sijin Joseph
Changes by Sijin Joseph sijinjos...@gmail.com: -- nosy: -sijinjoseph ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12045 ___ ___ Python-bugs-list

[issue12045] external shell command executed twice in ctypes.util._get_soname

2011-05-16 Thread Sijin Joseph
Sijin Joseph sijinjos...@gmail.com added the comment: Attaching patch. Removed the second call to os.popen and used the dump variable that was read earlier as the argument to re.search. -- keywords: +patch nosy: +sijinjoseph Added file: http://bugs.python.org/file22010/12045.patch

[issue12045] external shell command executed twice in ctypes.util._get_soname

2011-05-11 Thread Sijin Joseph
Changes by Sijin Joseph sijinjos...@gmail.com: -- nosy: +sijinjoseph ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12045 ___ ___ Python-bugs-list

[issue12045] external shell command executed twice in ctypes.util._get_soname

2011-05-09 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: It seems `cmd` is executed twice, for no obvious reason, in the following code: http://hg.python.org/cpython/file/2d4ef202d4ed/Lib/ctypes/util.py#l129 -- components: Library (Lib) messages: 135650 nosy: pitrou priority: normal severity: