Files
deb-python-eventlet/tests/stdlib/test_subprocess.py

12 lines
250 B
Python

from eventlet import patcher
from eventlet.green import subprocess
from eventlet.green import time
patcher.inject('test.test_subprocess',
globals(),
('subprocess', subprocess),
('time', time))
if __name__ == "__main__":
test_main()