OXIESEC PANEL
- Current Dir:
/
/
snap
/
core
/
17210
/
usr
/
lib
/
python3.5
/
concurrent
/
futures
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/02/2024 07:52:54 PM
rwxr-xr-x
📄
__init__.py
800 bytes
09/30/2024 02:20:05 PM
rw-r--r--
📁
__pycache__
-
10/02/2024 07:52:55 PM
rwxr-xr-x
📄
_base.py
19.56 KB
09/30/2024 02:20:05 PM
rw-r--r--
📄
process.py
19.66 KB
09/30/2024 02:20:05 PM
rw-r--r--
📄
thread.py
4.75 KB
09/30/2024 02:20:05 PM
rw-r--r--
Editing: __init__.py
Close
# Copyright 2009 Brian Quinlan. All Rights Reserved. # Licensed to PSF under a Contributor Agreement. """Execute computations asynchronously using threads or processes.""" __author__ = 'Brian Quinlan (brian@sweetapp.com)' from concurrent.futures._base import (FIRST_COMPLETED, FIRST_EXCEPTION, ALL_COMPLETED, CancelledError, TimeoutError, Future, Executor, wait, as_completed) from concurrent.futures.process import ProcessPoolExecutor from concurrent.futures.thread import ThreadPoolExecutor