[Python-checkins] Remove duplicate explanation (GH-91534)

miss-islington webhook-mailer at python.org
Mon Apr 18 00:45:11 EDT 2022


https://github.com/python/cpython/commit/0897a0bf9c75bacf428b8f6f08114fffc9f9c542
commit: 0897a0bf9c75bacf428b8f6f08114fffc9f9c542
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-04-17T21:44:58-07:00
summary:

Remove duplicate explanation (GH-91534)

(cherry picked from commit 0e6dca01937b62c07cff5b8450b7c74c101b857d)

Co-authored-by: Gouvernathor <44340603+Gouvernathor at users.noreply.github.com>

files:
M Doc/library/stdtypes.rst

diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 77b2590860e32..365680d4503ba 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -4345,10 +4345,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)



More information about the Python-checkins mailing list