Files
deb-python-eventlet/tests/isolated/subprocess_patched_communicate.py
Sergey Shepelev 7f08dfd250 little clean up
2016-02-12 20:42:03 +05:00

12 lines
268 B
Python

__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')