File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
stdlib/concurrent/interpreters Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ from collections.abc import Callable
55from typing import Any , Literal , TypeVar
66from typing_extensions import ParamSpec , Self
77
8- if sys .version_info >= (3 , 13 ): # needed to satisfy pyright checks for Python <3.13
8+ if sys .version_info >= (3 , 14 ): # needed to satisfy pyright checks for Python <= 3.13
99 from _interpreters import (
1010 InterpreterError as InterpreterError ,
1111 InterpreterNotFoundError as InterpreterNotFoundError ,
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ from collections.abc import Callable
33from typing import Final , NewType
44from typing_extensions import Never , Self , TypeAlias
55
6- if sys .version_info >= (3 , 13 ): # needed to satisfy pyright checks for Python <3.13
6+ if sys .version_info >= (3 , 14 ): # needed to satisfy pyright checks for Python <= 3.13
77 from _interpqueues import _UnboundOp
88
99 class ItemInterpreterDestroyed (Exception ): ...
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import sys
33from typing import Final , SupportsIndex
44from typing_extensions import Self
55
6- if sys .version_info >= (3 , 13 ): # needed to satisfy pyright checks for Python <3.13
6+ if sys .version_info >= (3 , 14 ): # needed to satisfy pyright checks for Python <= 3.13
77 from _interpqueues import QueueError as QueueError , QueueNotFoundError as QueueNotFoundError
88
99 from . import _crossinterp
You can’t perform that action at this time.
0 commit comments