Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion stdlib/asyncio/base_events.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ class BaseEventLoop(AbstractEventLoop):
# Future methods
def create_future(self) -> Future[Any]: ...
# Tasks methods
if sys.version_info >= (3, 14):
# `eager_start` is supported as an arbitrary kwarg starting in 3.13.3.
if sys.version_info >= (3, 13):
def create_task(
self,
coro: _CoroutineLike[_T],
Expand Down
3 changes: 2 additions & 1 deletion stdlib/asyncio/events.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ class AbstractEventLoop:
@abstractmethod
def create_future(self) -> Future[Any]: ...
# Tasks methods
if sys.version_info >= (3, 14):
# `eager_start` is supported as an arbitrary kwarg starting in 3.13.3.
if sys.version_info >= (3, 13):
@abstractmethod
def create_task(
self,
Expand Down