diff --git a/src/ubuiltins/__init__.py b/src/ubuiltins/__init__.py index ed3812f..4a0f929 100644 --- a/src/ubuiltins/__init__.py +++ b/src/ubuiltins/__init__.py @@ -301,7 +301,14 @@ class dict: def __init__(self, *args, **kwargs) -> None: """ - Creates a new dictionary. + dict(**kwargs) + dict(mapping, **kwargs) + dict(iterable, **kwargs) + + See the standard + `Python documentation + `_ + for a comprehensive reference with examples. """