From: Gouvernathor <44340603+Gouvernathor@users.noreply.github.com> Date: Mon, 18 Apr 2022 04:26:40 +0000 (+0200) Subject: Remove duplicate explanation (GH-91534) X-Git-Tag: v3.11.0b1~322 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0e6dca01937b62c07cff5b8450b7c74c101b857d;p=thirdparty%2FPython%2Fcpython.git Remove duplicate explanation (GH-91534) --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index f25e8303f94a..764d83a6800d 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -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)