Skip to content

Commit 1a8455b

Browse files
li-danJelleZijlstra
authored andcommittedJun 18, 2018
Add thread_name_prefix to ThreadPoolExecutor stub (#2249)
The thread_name_prefix argument of ThreadPoolExecutor.__init__ was added to the Python 2 backport in agronholm/pythonfutures#64.
1 parent 00cda79 commit 1a8455b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎stdlib/3/concurrent/futures/thread.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ from ._base import Executor, Future
33
import sys
44

55
class ThreadPoolExecutor(Executor):
6-
if sys.version_info >= (3, 6):
6+
if sys.version_info >= (3, 6) or sys.version_info < (3,):
77
def __init__(self, max_workers: Optional[int] = ...,
88
thread_name_prefix: str = ...) -> None: ...
99
else:

‎third_party/2/concurrent/futures/thread.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ from ._base import Executor, Future
33
import sys
44

55
class ThreadPoolExecutor(Executor):
6-
if sys.version_info >= (3, 6):
6+
if sys.version_info >= (3, 6) or sys.version_info < (3,):
77
def __init__(self, max_workers: Optional[int] = ...,
88
thread_name_prefix: str = ...) -> None: ...
99
else:

0 commit comments

Comments
 (0)
Please sign in to comment.