summaryrefslogtreecommitdiff
path: root/bs4/testing.py
AgeCommit message (Expand)Author
2015-09-28Add a __license__ statement to all source files.Leonard Richardson
2015-09-28Corrected the output of Declaration objects. [bug=1477847]Leonard Richardson
2015-06-28 It's now possible to pickle a BeautifulSoup object no matter whichLeonard Richardson
2015-06-26Added a sanity check helper method that makes sure all the elements of a tree...Leonard Richardson
2015-06-24If the initial <html> tag contains a CDATA list attribute such asLeonard Richardson
2015-06-23Got a hacky fix for the latest html5lib problem.Leonard Richardson
2015-06-23Force object_was_parsed() to keep the tree intact even when an elementLeonard Richardson
2014-12-11Improved the lxml tree builder's handling of processingLeonard Richardson
2014-12-07Issue a warning if the BeautifulSoup constructor arguments do not explicitly ...Leonard Richardson
2013-10-18Fixed yet another problem that caused the html5lib tree builder toLeonard Richardson
2013-06-02Merged in big encoding-detection refactoring branch.Leonard Richardson
2013-05-31The html.parser treebuilder can now handle numeric attributes inLeonard Richardson
2013-05-31Create a new lxml parser object for every new parsing strategy.Leonard Richardson
2013-05-20Fixed another bug by which the html5lib tree builder could create aLeonard Richardson
2013-05-20Fixed test failures when lxml is not installed.Leonard Richardson
2013-05-07Now that lxml's segfault on invalid doctype has been fixed, fix aLeonard Richardson
2013-05-06Added failing test.Leonard Richardson
2012-10-11Fix a bug in the lxml treebuilder which crashed when a tag includedLeonard Richardson
2012-08-21Fixed a problem with the html5lib builder not handling comments correctly.Leonard Richardson
2012-08-16Use namespace prefixes for namespaced attribute names, instead ofLeonard Richardson
2012-07-03Added test for bug 1020300.Leonard Richardson
2012-07-02Correctly handle closing tags with an XML namespace declared. Patch by Andrea...Leonard Richardson
2012-06-30Fixed an html5lib tree builder crash which happened when html5libLeonard Richardson
2012-05-24Fixed a bug with the lxml treebuilder that prevented the user from adding att...Leonard Richardson
2012-05-03Fixed the handling of &quot; with the built-in parser. [bug=993871]Leonard Richardson
2012-04-26The test suite now passes when lxml is not installed, whether or not html5lib...Leonard Richardson
2012-04-18Made encoding substitution in <meta> tags completely transparent (no more %SO...Leonard Richardson
2012-04-18Fixed a bug that made the HTMLParser treebuilder generate XML definitions end...Leonard Richardson
2012-03-24Pass data into XMLParser.feed() in chunks. [bug=963880]Leonard Richardson
2012-03-01In HTML5-style <meta charset="foo"> tags, the value of the "charset" attribu...Leonard Richardson
2012-03-01Added missing __len__ method that stopped html5lib tree builder from working ...Leonard Richardson
2012-02-28Fixed the generated XML declaration.Leonard Richardson
2012-02-26Fixed DOCTYPE handling.Leonard Richardson
2012-02-24I keep typing assertEquals.Leonard Richardson
2012-02-23The namespace stuff seems to work, and it's definitely an improvement on the ...Leonard Richardson
2012-02-23Inserted extra space.Leonard Richardson
2012-02-23A bit more testing.Leonard Richardson
2012-02-23Test that HTML5 parsers add the appropriate namespace to the tags they parse.Leonard Richardson
2012-02-23Fixed handling of the closing of namespaced tags.Leonard Richardson
2012-02-23Bumped version number.Leonard Richardson
2012-02-23Namespaced attributes are equal if they correspond to the same string.Leonard Richardson
2012-02-23Added basic namespace tests.Leonard Richardson
2012-02-23Merge from trunk and added tests.Leonard Richardson
2012-02-22Minor cleanup.Leonard Richardson
2012-02-22Bare strings are not HTML-escaped by default, but tags are.Leonard Richardson
2012-02-22Removed tests that merely illustrated parser behavior, behavior that wouldn't...Leonard Richardson
2012-02-20copied skipIf didn't work, so made a smaller one.Leonard Richardson
2012-02-20Changd the class structure so that the default parser test class uses html.pa...Leonard Richardson
2012-02-20Added code from 2.7's standard library so that the tests will run on Python 2.6.Leonard Richardson
2012-01-20Replaced assertEquals with assertEqual to get rid of deprecation notice.Leonard Richardson