diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-04-18 04:48:36 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-18 04:48:36 (GMT) |
| commit | 636832fb2a4364ca2014aadecf4c35833eff4495 (patch) | |
| tree | b6b47941d80d031a58d06e838258449137d45ea5 | |
| parent | 3537d897e069be9c7bde9a50b205f275791ffdbe (diff) | |
| download | cpython-636832fb2a4364ca2014aadecf4c35833eff4495.zip cpython-636832fb2a4364ca2014aadecf4c35833eff4495.tar.gz cpython-636832fb2a4364ca2014aadecf4c35833eff4495.tar.bz2 | |
Remove duplicate explanation (GH-91534)
(cherry picked from commit 0e6dca01937b62c07cff5b8450b7c74c101b857d)
Co-authored-by: Gouvernathor <44340603+Gouvernathor@users.noreply.github.com>
| -rw-r--r-- | Doc/library/stdtypes.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index cf1a638..1cba750 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -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) |
