summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2023-01-27 12:45:14 -0500
committerLeonard Richardson <leonardr@segfault.org>2023-01-27 12:45:14 -0500
commit98756d3c97f553f7abf22e3e16a357dac60f0b02 (patch)
treea30d5bdc90e4639053b037cd1b6a8e8d81deb63e /CHANGELOG
parent12ad184120ad7ddebe63462daf3c6f1a64fb4338 (diff)
Warnings now do their best to provide an appropriate stacklevel,
improving the usefulness of the message. [bug=1978744]
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG8
1 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 066c8c7..39cf884 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -6,8 +6,9 @@ Bazaar repository, the final revision to support Python 2 was 605.
= Unreleased
-* Fixed a test failure when cchardet is not installed but
- charset_normalizer is. [bug=1973072]
+* Fixed test failures caused by nondeterministic behavior of
+ UnicodeDammit's character detection, depending on the platform setup.
+ [bug=1973072]
* Fixed another crash when overriding multi_valued_attributes and using the
html5lib parser. [bug=1948488]
@@ -18,6 +19,9 @@ Bazaar repository, the final revision to support Python 2 was 605.
* Tag.interesting_string_types is now propagated when a tag is
copied. [bug=1990400]
+* Warnings now do their best to provide an appropriate stacklevel,
+ improving the usefulness of the error message. [bug=1978744]
+
* Passing a Tag's .contents into PageElement.extend() now works the
same way as passing the Tag itself.