We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
python
Learn more about funding links in repositories.
Report abuse
1 parent 00cda79 commit 1a8455bCopy full SHA for 1a8455b
stdlib/3/concurrent/futures/thread.pyi
@@ -3,7 +3,7 @@ from ._base import Executor, Future
3
import sys
4
5
class ThreadPoolExecutor(Executor):
6
- if sys.version_info >= (3, 6):
+ if sys.version_info >= (3, 6) or sys.version_info < (3,):
7
def __init__(self, max_workers: Optional[int] = ...,
8
thread_name_prefix: str = ...) -> None: ...
9
else:
third_party/2/concurrent/futures/thread.pyi
0 commit comments