]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove duplicate explanation (GH-91534)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 18 Apr 2022 04:48:36 +0000 (21:48 -0700)
committerGitHub <noreply@github.com>
Mon, 18 Apr 2022 04:48:36 +0000 (21:48 -0700)
(cherry picked from commit 0e6dca01937b62c07cff5b8450b7c74c101b857d)

Co-authored-by: Gouvernathor <44340603+Gouvernathor@users.noreply.github.com>
Doc/library/stdtypes.rst

index cf1a638344c8e0309540face32f6ac1fa7b30f6b..1cba75084b04bf60293fd0e39578907ce60f66c2 100644 (file)
@@ -4311,10 +4311,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)