Lines Matching defs:subprocess
559 Execute file with arguments from args in a subprocess.
568 Execute file with arguments from args in a subprocess with the
581 args in a subprocess.
591 args in a subprocess with the supplied environment.
604 Execute file with arguments from args in a subprocess.
613 Execute file with arguments from args in a subprocess with the
632 args in a subprocess with the supplied environment.
642 args in a subprocess with the supplied environment.
664 msg = "os.popen2 is deprecated. Use the subprocess module."
667 import subprocess
668 PIPE = subprocess.PIPE
669 p = subprocess.Popen(cmd, shell=isinstance(cmd, basestring),
684 msg = "os.popen3 is deprecated. Use the subprocess module."
687 import subprocess
688 PIPE = subprocess.PIPE
689 p = subprocess.Popen(cmd, shell=isinstance(cmd, basestring),
704 msg = "os.popen4 is deprecated. Use the subprocess module."
707 import subprocess
708 PIPE = subprocess.PIPE
709 p = subprocess.Popen(cmd, shell=isinstance(cmd, basestring),
711 stderr=subprocess.STDOUT, close_fds=True)