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

17 lines
410 B
Python

from eventlet.green import thread
from eventlet.green import threading
from eventlet.green import time
from test import test_threading_local
test_threading_local.threading = threading
def test_main():
import sys
sys.modules['thread'] = thread
sys.modules['threading'] = threading
sys.modules['time'] = time
test_threading_local.test_main()
if __name__ == '__main__':
test_main()