File: patcher_threadpoolexecutor.py

package info (click to toggle)
python-eventlet 0.26.1-7%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,916 kB
  • sloc: python: 24,898; makefile: 98
file content (18 lines) | stat: -rw-r--r-- 516 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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
    if sys.version_info >= (3, 2):
        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')