]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove duplicate explanation (GH-91534)
authorGouvernathor <44340603+Gouvernathor@users.noreply.github.com>
Mon, 18 Apr 2022 04:26:40 +0000 (06:26 +0200)
committerGitHub <noreply@github.com>
Mon, 18 Apr 2022 04:26:40 +0000 (13:26 +0900)
Doc/library/stdtypes.rst

index f25e8303f94a24952a5561438de845b6466fc944..764d83a6800d15699e32c2e33a022e314382943d 100644 (file)
@@ -4383,10 +4383,6 @@ then they can be used interchangeably to index the same dictionary entry.  (Note
 however, that since computers store floating-point numbers as approximations it
 is usually unwise to use them as dictionary keys.)
 
-Dictionaries can be created by placing a comma-separated list of ``key: value``
-pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098:
-'jack', 4127: 'sjoerd'}``, or by the :class:`dict` constructor.
-
 .. class:: dict(**kwargs)
            dict(mapping, **kwargs)
            dict(iterable, **kwargs)