I would like to use Python 2.6's version of subprocess, because it allows the Popen.terminate() function, but I'm stuck with Python 2.5. Is there some reasonably clean way to use the newer version of the module in my 2.5 code? Some sort of from __future__ import subprocess_module?
|
|
|||||
|
|
I know this question has already been answered, but for what it's worth, I've used the
|
|||||||||||
|
|
There isn't really a great way to do it. subprocess is implemented in python (as opposed to C) so you could conceivably copy the module somewhere and use it (hoping of course that it doesn't use any 2.6 goodness). On the other hand you could simply implement what subprocess claims to do and write a function that sends SIGTERM on *nix and calls TerminateProcess on Windows. The following implementation has been tested on linux and in a Win XP vm, you'll need the python Windows extensions:
That way you only have to maintain the |
|||
|
|
While this doesn't directly answer your question, it may be worth knowing. Imports from |
|||
|
|
|
I followed Kamil Kisiel suggestion regarding using python 2.6 subprocess.py in python 2.5 and it worked perfectly. To make it easier, I created a distutils package that you can easy_install and/or include in buildout. To use subprocess from python 2.6 in python 2.5 project:
in your code
in buildout
|
|||
|
|
|
Here are some ways to end processes on Windows, taken directly from http://code.activestate.com/recipes/347462/
|
|||
|
|
|
Well Python is open source, you are free to take that pthread function from 2.6 and move it into your own code or use it as a reference to implement your own. For reasons that should be obvious there's no way to have a hybrid of Python that can import portions of newer versions. |
|||
|
|
