mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
stdlib: add argument default values (#9501)
This commit is contained in:
@@ -16,5 +16,5 @@ class TaskGroup:
|
||||
async def __aenter__(self: Self) -> Self: ...
|
||||
async def __aexit__(self, et: type[BaseException] | None, exc: BaseException | None, tb: TracebackType | None) -> None: ...
|
||||
def create_task(
|
||||
self, coro: Generator[Any, None, _T] | Coroutine[Any, Any, _T], *, name: str | None = ..., context: Context | None = ...
|
||||
self, coro: Generator[Any, None, _T] | Coroutine[Any, Any, _T], *, name: str | None = None, context: Context | None = None
|
||||
) -> Task[_T]: ...
|
||||
|
||||
Reference in New Issue
Block a user