summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* | The argument to now works correctly, though it'sLeonard Richardson2016-07-183-5/+14
* | Use a dedicated logger instead of the root logger. [bug=1511661]Leonard Richardson2016-07-171-1/+1
* | Use a dedicated logger instead of the root logger. [bug=1511661]Leonard Richardson2016-07-171-3/+4
* | When a BeautifulSoup object is pickled but its tree builder cannotLeonard Richardson2016-07-172-1/+6
* | Although the previously fixed problem only occurs when using the html5lib tre...Leonard Richardson2016-07-172-5/+5
* | Fixed a bug in the html5lib treebuilder that deranged the treeLeonard Richardson2016-07-173-1/+27
* | Use known_xml instead of continually adding underscores to is_xml.Leonard Richardson2016-07-172-10/+14
* | Whenever possible, keep track ahead of time whether a PageElement is HTML or ...Leonard Richardson2016-07-171-11/+30
* | Beautiful Soup will now work with versions of html5lib greater thanLeonard Richardson2016-07-164-9/+43
* | We don't run the check for a filename passed in as markup if theLeonard Richardson2016-07-162-1/+5
* | Removed imports to pdb, since pdb is not available in some environments. [bug...Leonard Richardson2016-07-165-5/+0
* | corrected typo. [bug=1561510]Leonard Richardson2016-07-161-2/+3
* | Specify the file and line number when warning about aLeonard Richardson2016-07-162-1/+12
* | The contents of <textarea> tags will no longer be modified when theLeonard Richardson2016-07-164-7/+34
* | Fixed a Python 3 ByteWarning when a URL was passed in as though itLeonard Richardson2016-07-163-18/+67
* | Added a separate class for XML processing instructions, which have a slightly...Leonard Richardson2016-07-164-1/+19
* | Rename COPYING.txt to LICENSE. Add a reference to LICENSE in every source file.Leonard Richardson2016-07-1610-3/+25
|/
* Fixed a typo in the documentation, fixed by Gene Wood.Leonard Richardson2015-11-241-1/+1
|\
| * Fixing typo in example of nth-of-type css selectorGene Wood2015-11-231-1/+1
|/
* Add a __license__ statement to all source files.Leonard Richardson2015-09-284-0/+8
* Fixed a parse bug with the html5lib tree-builder. Thanks to RoelLeonard Richardson2015-09-283-1/+14
* Improved the implementation of CSS selector grouping. Thanks to Orangain for ...Leonard Richardson2015-09-283-190/+205
* Corrected the output of Declaration objects. [bug=1477847]Leonard Richardson2015-09-284-5/+16
* Fixed a bug that deranged the tree when part of it wasLeonard Richardson2015-09-283-6/+35
|\
| * Use identity comparisons for tree traversalEric Wieser2015-08-061-5/+5
* | Don't allow inserting None into a tag.Leonard Richardson2015-09-282-1/+3
|/
* Fixed the test_detect_utf8 test so that it works when chardet isLeonard Richardson2015-07-052-2/+8
* Added reference to old 'text' name to documentation.Leonard Richardson2015-07-052-6/+12
* Added instructions for final post-release test.Leonard Richardson2015-07-031-1/+21
* Turns out setup.py requiring lxml was never in a released version which is a ...Leonard Richardson2015-07-033-11/+42
* Change setup.py to focus on creating wheels.Leonard Richardson2015-07-034-30/+113
* Unicode data cannot have a byte-order mark. Returning early stops a warning f...Leonard Richardson2015-07-031-0/+3
* Also include convert-py3k in source distributions. [bug=1304006]Leonard Richardson2015-06-282-1/+2
* Added test-all-versions and the Chinese docs to the manifest.Leonard Richardson2015-06-281-4/+5
* It's now possible to pickle a BeautifulSoup object no matter whichLeonard Richardson2015-06-286-3/+50
* Changed the way soup objects work under copy.copy(). Copying aLeonard Richardson2015-06-286-12/+110
* Copying a NavigableString will give you a new NavigableString that is not con...Leonard Richardson2015-06-283-1/+27
* Reorganized changelog.Leonard Richardson2015-06-282-17/+23
* Fixed a bug where Element.extract() could create an infinite loop inLeonard Richardson2015-06-283-10/+17
* Accept 'xml' as an unambiguous identifier for the lxml XML parser, since it's...Leonard Richardson2015-06-282-2/+8
* Raise a NotImplementedError whenever an unsupported CSS pseudoclassLeonard Richardson2015-06-284-34/+50
* Added an example of using a fuction on an attribute value/using a function to...Leonard Richardson2015-06-271-0/+11
* Added another layer of security to catch cases where lxml and html5lib are no...Leonard Richardson2015-06-271-4/+13
* Added an exclude_encodings argument to UnicodeDammit and to theLeonard Richardson2015-06-278-9/+63
* Added a sanity check helper method that makes sure all the elements of a tree...Leonard Richardson2015-06-263-9/+21
* Introduced the select_one() method, which uses a CSS selector butLeonard Richardson2015-06-254-1/+27
* The text argument to the find_* methods is now called string,Leonard Richardson2015-06-254-33/+47
* Make it possible to invoke the Tag() constructor without providing a builder....Leonard Richardson2015-06-251-3/+6
* You can now create a NavigableString or a subclass just by invokingLeonard Richardson2015-06-254-13/+15
* Improved the exception raised when you call .unwrap() orLeonard Richardson2015-06-253-1/+22