Files
deb-python-eventlet/tests/isolated/subprocess_patched_communicate.py

14 lines
310 B
Python

# no standard tests in this file, ignore
__test__ = False
if __name__ == '__main__':
import sys
import eventlet
import subprocess
eventlet.monkey_patch(all=True)
p = subprocess.Popen([sys.executable], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
p.communicate()
print('pass')