From ce16d200e783abf29c7f5205a83ded374f00b979 Mon Sep 17 00:00:00 2001 From: Benjamin Schubert Date: Sun, 22 Oct 2023 12:44:43 +0100 Subject: [PATCH] Add changelog entry --- changelog/1531.improvement.rst | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 changelog/1531.improvement.rst diff --git a/changelog/1531.improvement.rst b/changelog/1531.improvement.rst new file mode 100644 index 000000000..2dd8ee247 --- /dev/null +++ b/changelog/1531.improvement.rst @@ -0,0 +1,7 @@ +Improved the very verbose diff for every standard library container types. Previously, +this would use the default python pretty printer, which puts opening and closing +markers on the same line as the first/last entry, in addition to not having +consistent indentation. + +The indentation is now consistent and the markers on their own separate lines +which should reduce the diffs shown to users.