]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-139155: Remove "dictionaries are sorted by key" note in `pprint` docs (GH-139159)
authorBartosz Sławecki <bartosz@ilikepython.com>
Sun, 12 Oct 2025 16:48:22 +0000 (18:48 +0200)
committerGitHub <noreply@github.com>
Sun, 12 Oct 2025 16:48:22 +0000 (12:48 -0400)
Doc/library/pprint.rst

index 2985f31bacb47a59c97d9b9f88455f30778cb2a3..f51892450798aeb0a1c4cf18d742fc7de7054077 100644 (file)
@@ -22,8 +22,6 @@ The formatted representation keeps objects on a single line if it can, and
 breaks them onto multiple lines if they don't fit within the allowed width,
 adjustable by the *width* parameter defaulting to 80 characters.
 
-Dictionaries are sorted by key before the display is computed.
-
 .. versionchanged:: 3.9
    Added support for pretty-printing :class:`types.SimpleNamespace`.