summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2020-04-21 08:17:28 -0400
committerLeonard Richardson <leonardr@segfault.org>2020-04-21 08:17:28 -0400
commitc913ce03775a2e08e970c1c537ad43cf03cbd417 (patch)
tree9c57cd6b86a29a4927767f3cacf921c40244bb30 /CHANGELOG
parentc39b3d727006259d7933f468cef7cb1ea9ab6bba (diff)
Added two distinct UserWarning subclasses for warnings issued from the BeautifulSoup constructor which a caller may want to filter out. [bug=1873787]
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 6da8b10..9f87315 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,14 @@
= 4.9.1 (unreleased)
+* Added a distinct subclass, GuessedAsParserWarning, for the warning
+ issued when BeautifulSoup is instantiated without a parser being
+ specified. [bug=1873787]
+
+* Added a distinct subclass, MarkupResemblesLocatorWarning, for the
+ warning issued when BeautifulSoup is instantiated with 'markup' that
+ actually seems to be a URL or the path to a file on
+ disk. [bug=1873787]
+
* The new NavigableString subclasses (Stylesheet, Script, and
TemplateString) can now be imported directly from the bs4 package.