blob: a6f421a5d3afb5a6dc082a457d17ed941b221a2e (
plain)
1
2
3
4
5
6
7
8
9
|
# no standard tests in this file, ignore
__test__ = False
if __name__ == '__main__':
import subprocess
import eventlet
eventlet.monkey_patch(all=False, os=True)
process = subprocess.Popen("sleep 0.1 && false", shell=True)
print(process.wait())
|