def system(*args, **kwargs): """system(command) -> exit_status Execute the command (a string) in a subshell. """ # allow lazy import of popen2 and javashell import popen2 return popen2.system(*args, **kwargs)
def system( *args, **kwargs ): """system(command) -> exit_status Execute the command (a string) in a subshell. """ # allow lazy import of popen2 and javashell import popen2 return popen2.system( *args, **kwargs )
def system( *args, **kwargs ): # allow lazy import of popen2 and javashell import popen2 return popen2.system( *args, **kwargs )