Updates for Python 3.14rc1 (#14446)

This commit is contained in:
Sebastian Rittau
2025-07-24 16:30:00 +02:00
committed by GitHub
parent a1dc346ef6
commit 82edad066f
8 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ from .thread import ThreadPoolExecutor as ThreadPoolExecutor
if sys.version_info >= (3, 14):
from .interpreter import InterpreterPoolExecutor as InterpreterPoolExecutor
__all__ = (
__all__ = [
"FIRST_COMPLETED",
"FIRST_EXCEPTION",
"ALL_COMPLETED",
@@ -34,7 +34,7 @@ if sys.version_info >= (3, 14):
"ProcessPoolExecutor",
"ThreadPoolExecutor",
"InterpreterPoolExecutor",
)
]
elif sys.version_info >= (3, 13):
__all__ = (