diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-25 05:58:25 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-25 05:58:25 (GMT) |
commit | 685fbed7f9bbff7426aaef68581fddc64c4a71e3 (patch) | |
tree | 045f98f87994e95a4639e1867944ce455efba1d4 /Misc | |
parent | 5b6f0aa71c8f91a970eeb06eb8c636c8c69a569f (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |