summaryrefslogtreecommitdiff
path: root/bs4/tests/test_tree.py
Commit message (Expand)AuthorAgeFilesLines
* Fix an exception when a custom formatter was asked to format a voidLeonard Richardson2018-07-301-2/+2
* When markup contains duplicate elements, a select() call thatLeonard Richardson2018-07-281-1/+13
* Correctly handle invalid HTML numeric character entities like “Leonard Richardson2018-07-281-1/+1
* You can pass a dictionary of intoLeonard Richardson2018-07-151-3/+3
* Introduced the Formatter system. [bug=1716272].Leonard Richardson2018-07-151-3/+11
* Fixed a disconnected parse tree when one BeautifulSoup object wasLeonard Richardson2018-07-141-0/+20
* Fixed code that was causing deprecation warnings in recent Python 3Leonard Richardson2018-07-141-1/+1
* Replace get_attribute_text with get_attribute_list.Leonard Richardson2017-05-061-3/+3
* Renamed convenience method to get_attribute_text.Leonard Richardson2017-05-061-1/+1
* Added the method, which acts like forLeonard Richardson2017-05-061-0/+4
* It's now possible to use a tag's namespace prefix when searching,Leonard Richardson2017-05-061-0/+2
* Spelling fixesVille Skyttä2016-07-261-1/+1
* Fixed test that fails in Python 3.5.Leonard Richardson2016-07-191-2/+2
* Pass in bytes so that the BeautifulSoup object always has an original_encoding.Leonard Richardson2016-07-181-1/+1
* If a search against each individual value of a multi-valuedLeonard Richardson2016-07-181-3/+14
* Corrected an encoding error that happened when a BeautifulSoupLeonard Richardson2016-07-181-0/+7
* Added support for CSS selector values that contain quoted spaces,Leonard Richardson2016-07-181-0/+8
* The argument to now works correctly, though it'sLeonard Richardson2016-07-181-2/+9
* Improved the implementation of CSS selector grouping. Thanks to Orangain for ...Leonard Richardson2015-09-281-12/+15
* Corrected the output of Declaration objects. [bug=1477847]Leonard Richardson2015-09-281-0/+4
* Fixed a bug that deranged the tree when part of it wasLeonard Richardson2015-09-281-0/+25
* Changed the way soup objects work under copy.copy(). Copying aLeonard Richardson2015-06-281-0/+26
* Copying a NavigableString will give you a new NavigableString that is not con...Leonard Richardson2015-06-281-0/+19
* Raise a NotImplementedError whenever an unsupported CSS pseudoclassLeonard Richardson2015-06-281-0/+8
* Introduced the select_one() method, which uses a CSS selector butLeonard Richardson2015-06-251-0/+8
* The text argument to the find_* methods is now called string,Leonard Richardson2015-06-251-1/+2
* Improved the exception raised when you call .unwrap() orLeonard Richardson2015-06-251-0/+9
* __repr__ now returns an ASCII bytestring in Python 2, and a Unicode string in...Leonard Richardson2015-06-251-0/+9
* The select() method can now find tags with attributes whose namesLeonard Richardson2015-06-241-8/+12
* Force object_was_parsed() to keep the tree intact even when an elementLeonard Richardson2015-06-231-0/+6
* The select() method can now find tags whose names containLeonard Richardson2014-12-111-4/+18
* The select() method now supports selector grouping. Patch byLeonard Richardson2014-12-101-0/+46
* Issue a warning if the BeautifulSoup constructor arguments do not explicitly ...Leonard Richardson2014-12-071-6/+6
* Make sure the optimized find_all() ResultSets actually contain the right data.Leonard Richardson2013-08-151-0/+10
* All find_all calls should now return a ResultSet object. Patch byLeonard Richardson2013-08-121-0/+13
* A NavigableString object now has an immutable '.name' property whoseLeonard Richardson2013-06-031-0/+6
* Reverted the patch that gives NavigableString a .name property, because that'...Leonard Richardson2013-05-311-7/+0
* A NavigableString object now has an immutable '.name' property whoseLeonard Richardson2013-05-201-0/+6
* Gave new_string() the ability to create subclasses ofLeonard Richardson2013-05-201-0/+6
* Fixed test failures when lxml is not installed.Leonard Richardson2013-05-201-12/+0
* Added a deprecation warning to has_key().Leonard Richardson2013-05-141-1/+1
* A CSS selector should never match the same tag twice.Leonard Richardson2013-05-081-0/+3
* Added tests.Leonard Richardson2013-05-081-0/+3
* Aaand... it's now trivial to implement sibling selectors.Leonard Richardson2013-05-081-0/+13
* OK, the tests pass.Leonard Richardson2013-05-081-1/+1
* We're getting there.Leonard Richardson2013-05-081-1/+1
* Fixed an exception when an overspecified CSS selector didn't matchLeonard Richardson2013-05-071-1/+5
* Added support for the "nth-of-type" CSS selector. The CSS selector ">" can no...Leonard Richardson2013-05-071-0/+30
* The prettify() method now leaves the contents of <pre> tagsLeonard Richardson2013-05-071-1/+9
* Methods like get_text() and properties like .strings now only giveLeonard Richardson2013-05-061-0/+15