cpython: 5fc6f47974db (original) (raw)

--- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -275,14 +275,17 @@ available. They are listed here in alph .. _func-dict: -.. function:: dict([arg]) +.. function:: dict(**kwarg)

.. function:: dir([object])

--- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1956,32 +1956,41 @@ Dictionaries can be created by placing a pairs within braces, for example: {'jack': 4098, 'sjoerd': 4127} or {4098:[](#l2.4) 'jack', 4127: 'sjoerd'}, or by the :class:dict constructor. -.. class:: dict([arg]) -

+

+