diff options
author | Leonard Richardson <leonardr@segfault.org> | 2019-08-21 19:06:09 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2019-08-21 19:06:09 -0400 |
commit | 694a432f6ed1a62de742c7dfda0ed39ca4f2bb63 (patch) | |
tree | 57a73c5a8ec210a09046ab77c6687b300590ab8b /CHANGELOG | |
parent | db31fa66e82d097c2378734950bd3066acdae397 (diff) |
When instantiating a BeautifulSoup object, it's now possible to
provide replacement classes to be instantiated for every tag ('tag_class')
or string ('string_class') encountered during parsing, rather than
using the default Tag and NavigableString objects.
Diffstat (limited to 'CHANGELOG')
-rw-r--r-- | CHANGELOG | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,11 @@ * Copying a Tag preserves information that was originally obtained from the TreeBuilder used to build the original Tag. [bug=1838903] +* When instantiating a BeautifulSoup object, it's now possible to + provide replacement classes to be instantiated for every tag ('tag_class') + or string ('string_class') encountered during parsing, rather than + using the default Tag and NavigableString objects. + = 4.8.0 (20190720, "One Small Soup") This release focuses on making it easier to customize Beautiful Soup's |