runtime/spawn_subprocess.py
branchpython3
changeset 3750 f62625418bff
parent 3293 d2b0c768755d
child 3821 f7bc4e5832be
equal deleted inserted replaced
3749:fda6c1a37662 3750:f62625418bff
     1 #!/usr/bin/env python
     1 #!/usr/bin/env python
     2 # -*- coding: utf-8 -*-
     2 # -*- coding: utf-8 -*-
     3 
     3 
     4 # subset of subprocess built-in module using posix_spawn rather than fork.
     4 # subset of subprocess built-in module using posix_spawn rather than fork.
     5 
     5 
     6 from __future__ import print_function
     6 
     7 from __future__ import absolute_import
     7 
     8 import os
     8 import os
     9 import signal
     9 import signal
    10 import shlex
    10 import shlex
    11 import posix_spawn
    11 import posix_spawn
    12 
    12