Am 02.03.10 21:41, schrieb mk:
Jerry Hill wrote:
Just import subprocess at the top of your module. If subprocess
hasn't been imported yet, it will be imported when your module is
loaded. If it's already been imported, your module will use the
cached version that's already been imported.
In othe
Jerry Hill wrote:
Just import subprocess at the top of your module. If subprocess
hasn't been imported yet, it will be imported when your module is
loaded. If it's already been imported, your module will use the
cached version that's already been imported.
In other words, it sounds like Python
On Tue, Mar 2, 2010 at 12:46 PM, mk wrote:
> Hello everyone,
>
> I have a class that is dependent on subprocess functionality. I would like
> to make it self-contained in the sense that it would import subprocess if
> it's not imported yet.
>
> What is the best way to proceed with this?
Just impo
mk wrote:
Hello everyone,
I have a class that is dependent on subprocess functionality. I would
like to make it self-contained in the sense that it would import
subprocess if it's not imported yet.
What is the best way to proceed with this?
I see a few possibilities:
1. do a class level im
Hello everyone,
I have a class that is dependent on subprocess functionality. I would
like to make it self-contained in the sense that it would import
subprocess if it's not imported yet.
What is the best way to proceed with this?
I see a few possibilities:
1. do a class level import, like: