[stdlib] Add default values part 2 (#14769)

This commit is contained in:
Semyon Moroz
2026-01-11 11:08:32 -08:00
committed by GitHub
parent a4eeb5c05b
commit 3593e35df4
12 changed files with 142 additions and 117 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ class Stats:
sort_arg_dict_default: _SortArgDict
def __init__(
self,
arg: None | str | Profile | _cProfile = ...,
arg: None | str | Profile | _cProfile = None,
/,
*args: None | str | Profile | _cProfile | Self,
stream: IO[Any] | None = None,