Martin Panter added the comment:

Here is a possible patch for Python 2. One snag is that ctypes is currently 
supposed to be compatible with Python 2.3, but subprocess was added in 2.4. The 
patch assumes it is okay to lift that compatibility restriction.

The main differences are:

* shutil.which() does not exist in Python 2. In _findLib_gcc() and the Gnu 
version of _get_soname(), I restored the mini shell script that runs “type” to 
check if commands are available. However I pass the library and file names as 
proper arguments, rather than inserting them into the shell syntax.

* subprocess.DEVNULL does not exist. Manually opened os.devnull where necessary.

* There was an extra Popen conversion for the Gnu “ldconfig -p” call. In Python 
3, this was already converted thanks to revision 19d9f0a177de (Issue 11258).

* No context manager support for Popen objects. Instead, use communicate() 
where appropriate, or manually close and wait.

Again, I tested the Python 2 patch on Linux, but with mock platform-specific 
commands to exercise each new Popen() call.

----------
Added file: http://bugs.python.org/file42797/ctypes_util_popen-3.py2.patch

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue22636>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to