File: patcher_threadpoolexecutor.py

package info (click to toggle)
python-eventlet 0.40.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,200 kB
  • sloc: python: 25,101; sh: 78; makefile: 31
file content (17 lines) | stat: -rw-r--r-- 461 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Issue #508: test ThreadPoolExecutor with monkey-patching
__test__ = False

if __name__ == '__main__':
    import eventlet
    eventlet.monkey_patch()

    import sys

    # Futures is only included in 3.2 or later
    from concurrent import futures

    with futures.ThreadPoolExecutor(max_workers=1) as executor:
        future = executor.submit(pow, 2, 3)
        res = future.result()
    assert res == 8, '2^3 should be 8, not %s' % res
    print('pass')