Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-06-28 | It's now possible to pickle a BeautifulSoup object no matter which | Leonard Richardson | |
tree builder was used to create it. However, the only tree builder that survives the pickling process is the HTMLParserTreeBuilder ('html.parser'). If you unpickle a BeautifulSoup object created with some other tree builder, soup.builder will be None. [bug=1231545] | |||
2012-04-18 | Fixed a bug that made the HTMLParser treebuilder generate XML definitions ↵ | Leonard Richardson | |
ending with two question marks instead of one. [bug=984258] | |||
2012-02-23 | Added basic namespace tests. | Leonard Richardson | |
2012-02-22 | Removed tests that merely illustrated parser behavior, behavior that ↵ | Leonard Richardson | |
wouldn't break Beautiful Soup if it changed. | |||
2012-02-20 | It's now possible to copy a BeautifulSoup object created with the ↵ | Leonard Richardson | |
html.parser treebuilder. | |||
2012-02-20 | Temporarily skip the deepcopy test when lxml is not installed. | Leonard Richardson | |
2012-02-20 | lxml tests are once again run and pass when lxml is installed. | Leonard Richardson | |
2012-02-20 | Changd the class structure so that the default parser test class uses ↵ | Leonard Richardson | |
html.parser. | |||
2012-02-15 | Added a kind of hacky way to interpret the restriction class='foo bar'. Stop ↵ | Leonard Richardson | |
generating a space before the slash that closes an empty-element tag. | |||
2012-02-06 | Monkeypatch Python 3.2 versions prior to 3.2.3 to solve some major ↵ | Leonard Richardson | |
HTMLParser bugs. | |||
2012-01-20 | Made it easier to convert BS3 code to BS4. | Leonard Richardson | |
2012-01-20 | Replaced assertEquals with assertEqual to get rid of deprecation notice. | Leonard Richardson | |