summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-04-25 05:58:25 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-04-25 05:58:25 (GMT)
commit685fbed7f9bbff7426aaef68581fddc64c4a71e3 (patch)
tree045f98f87994e95a4639e1867944ce455efba1d4 /Misc
parent5b6f0aa71c8f91a970eeb06eb8c636c8c69a569f (diff)
downloadcpython-685fbed7f9bbff7426aaef68581fddc64c4a71e3.zip
cpython-685fbed7f9bbff7426aaef68581fddc64c4a71e3.tar.gz
cpython-685fbed7f9bbff7426aaef68581fddc64c4a71e3.tar.bz2
Issue #26837: assertSequenceEqual() now correctly outputs non-stringified
differing items (like bytes in the -b mode). This affects assertListEqual() and assertTupleEqual().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ff4af4d..20dc519 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -107,6 +107,10 @@ Core and Builtins
Library
-------
+- Issue #26837: assertSequenceEqual() now correctly outputs non-stringified
+ differing items (like bytes in the -b mode). This affects assertListEqual()
+ and assertTupleEqual().
+
- Issue #26041: Remove "will be removed in Python 3.7" from deprecation
messages of platform.dist() and platform.linux_distribution().
Patch by Kumaripaba Miyurusara Athukorala.