summaryrefslogtreecommitdiff
path: root/bs4
Commit message (Expand)AuthorAgeFilesLines
...
* | Explained why we test both unicode and bytestring processing instructions.Leonard Richardson2016-07-302-11/+20
* | Fixed a reported (but not duplicated) bug involving processing instructions f...Leonard Richardson2016-07-261-1/+3
* | Clarify that Beautiful Soup is no longer compatible with versions of Python p...Leonard Richardson2016-07-262-3/+2
|\ \
| * | Clarify Python 2(.7) support statusVille Skyttä2016-07-262-3/+2
* | | Change the way open() is used. Code contributed by Ville Skyttä.Leonard Richardson2016-07-261-1/+2
|\ \ \
| * | | Open/close files with "with"Ville Skyttä2016-07-261-1/+2
| |/ /
* | | Renamed deprecated method. Contributed by Ville Skyttä.Leonard Richardson2016-07-261-1/+1
|\ \ \
| * | | Use assertEqual instead of deprecated assertEqualsVille Skyttä2016-07-261-1/+1
| |/ /
* | | Spelling fixesVille Skyttä2016-07-263-3/+3
|/ /
* | 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-182-18/+23
* | Corrected an encoding error that happened when a BeautifulSoupLeonard Richardson2016-07-182-1/+17
* | Added support for CSS selector values that contain quoted spaces,Leonard Richardson2016-07-182-8/+14
* | The argument to now works correctly, though it'sLeonard Richardson2016-07-182-5/+11
* | 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-171-1/+1
* | Although the previously fixed problem only occurs when using the html5lib tre...Leonard Richardson2016-07-171-2/+2
* | Fixed a bug in the html5lib treebuilder that deranged the treeLeonard Richardson2016-07-172-1/+23
* | 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-163-9/+40
* | We don't run the check for a filename passed in as markup if theLeonard Richardson2016-07-161-1/+1
* | 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-161-1/+8
* | The contents of <textarea> tags will no longer be modified when theLeonard Richardson2016-07-163-7/+31
* | Fixed a Python 3 ByteWarning when a URL was passed in as though itLeonard Richardson2016-07-162-18/+59
* | 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-169-2/+24
|/
* 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-282-1/+11
* Improved the implementation of CSS selector grouping. Thanks to Orangain for ...Leonard Richardson2015-09-282-190/+201
* Corrected the output of Declaration objects. [bug=1477847]Leonard Richardson2015-09-283-2/+11
* Fixed a bug that deranged the tree when part of it wasLeonard Richardson2015-09-282-5/+30
|\
| * Use identity comparisons for tree traversalEric Wieser2015-08-061-5/+5
* | Don't allow inserting None into a tag.Leonard Richardson2015-09-281-0/+2
|/
* Fixed the test_detect_utf8 test so that it works when chardet isLeonard Richardson2015-07-051-2/+3
* Change setup.py to focus on creating wheels.Leonard Richardson2015-07-031-1/+1
* Unicode data cannot have a byte-order mark. Returning early stops a warning f...Leonard Richardson2015-07-031-0/+3
* It's now possible to pickle a BeautifulSoup object no matter whichLeonard Richardson2015-06-285-3/+44
* Changed the way soup objects work under copy.copy(). Copying aLeonard Richardson2015-06-284-6/+47
* Copying a NavigableString will give you a new NavigableString that is not con...Leonard Richardson2015-06-282-1/+23
* Reorganized changelog.Leonard Richardson2015-06-281-2/+2
* Fixed a bug where Element.extract() could create an infinite loop inLeonard Richardson2015-06-282-10/+14
* 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-282-27/+38
* 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-276-9/+46