From 7e8f10710699fd263f533a87ed94e2a3b44c3aaf Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sun, 12 Oct 2025 18:55:49 +0200 Subject: [PATCH] [3.14] gh-139155: Remove "dictionaries are sorted by key" note in `pprint` docs (GH-139159) (GH-140003) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit gh-139155: Remove "dictionaries are sorted by key" note in `pprint` docs (GH-139159) (cherry picked from commit 68622be935b36f0ca75729157992972dbf426603) Co-authored-by: Bartosz Sławecki --- Doc/library/pprint.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/Doc/library/pprint.rst b/Doc/library/pprint.rst index 2985f31bacb4..f51892450798 100644 --- a/Doc/library/pprint.rst +++ b/Doc/library/pprint.rst @@ -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`. -- 2.47.3