summaryrefslogtreecommitdiff
path: root/bs4/__init__.py
AgeCommit message (Expand)Author
2016-07-17 When a BeautifulSoup object is pickled but its tree builder cannotLeonard Richardson
2016-07-17Although the previously fixed problem only occurs when using the html5lib tre...Leonard Richardson
2016-07-17Fixed a bug in the html5lib treebuilder that deranged the treeLeonard Richardson
2016-07-17Use known_xml instead of continually adding underscores to is_xml.Leonard Richardson
2016-07-16Beautiful Soup will now work with versions of html5lib greater thanLeonard Richardson
2016-07-16We don't run the check for a filename passed in as markup if theLeonard Richardson
2016-07-16corrected typo. [bug=1561510]Leonard Richardson
2016-07-16Specify the file and line number when warning about aLeonard Richardson
2016-07-16Fixed a Python 3 ByteWarning when a URL was passed in as though itLeonard Richardson
2016-07-16Rename COPYING.txt to LICENSE. Add a reference to LICENSE in every source file.Leonard Richardson
2015-07-03Change setup.py to focus on creating wheels.Leonard Richardson
2015-06-28 It's now possible to pickle a BeautifulSoup object no matter whichLeonard Richardson
2015-06-28Changed the way soup objects work under copy.copy(). Copying aLeonard Richardson
2015-06-28Reorganized changelog.Leonard Richardson
2015-06-28Accept 'xml' as an unambiguous identifier for the lxml XML parser, since it's...Leonard Richardson
2015-06-27Added an exclude_encodings argument to UnicodeDammit and to theLeonard Richardson
2015-06-25You can now create a NavigableString or a subclass just by invokingLeonard Richardson
2015-06-23Made the previous fix nicer by adding arguments to setup() that let us preser...Leonard 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-10The warning when you pass in a filename or URL as markup will now beLeonard Richardson
2014-12-07Tweaked the parser warning.Leonard Richardson
2014-12-07Issue a warning if the BeautifulSoup constructor arguments do not explicitly ...Leonard Richardson
2013-10-02Restored the helpful syntax error that happens when you try toLeonard Richardson
2013-10-02Prep for release.Leonard Richardson
2013-10-01 Fixed a crash when a short input contains data not valid inLeonard Richardson
2013-10-01Fixed a bug in which short Unicode input was improperly encoded to ASCII when...Leonard Richardson
2013-08-15Bumped version number.Leonard Richardson
2013-08-13* Fixed yet another problem with the html5lib tree builder, caused byLeonard Richardson
2013-08-12A little cleanup.Leonard Richardson
2013-06-03Changed _popToTag to run through a single range instead of two.Leonard Richardson
2013-06-03Improved _popToTag a tiny bit.Leonard Richardson
2013-06-03Inlined some commonly called code to save a function call.Leonard Richardson
2013-06-03Made it a lot faster to check whether whitespace is being preserved.Leonard Richardson
2013-06-03Put the more frequently-used ASCII spaces in front.Leonard Richardson
2013-06-03Wrote a more efficient replacement for string.translate() when checking wheth...Leonard Richardson
2013-06-03Let's get some profiling going.Leonard Richardson
2013-06-03Beautiful Soup will issue a warning if instead of markup you pass itLeonard Richardson
2013-06-02Merged in big encoding-detection refactoring branch.Leonard Richardson
2013-05-31Reverted the patch that gives NavigableString a .name property, because that'...Leonard Richardson
2013-05-31Create a new lxml parser object for every new parsing strategy.Leonard Richardson
2013-05-20A NavigableString object now has an immutable '.name' property whoseLeonard Richardson
2013-05-20The .next_element attribute used during parsing was confusingly similar to th...Leonard Richardson
2013-05-20Gave new_string() the ability to create subclasses ofLeonard Richardson
2013-05-07Fixed up diagnose() and added it to the docs.Leonard Richardson
2013-05-07Aliased the BeautifulSoup class to the easier-to-type "_s" and "_soup".Leonard Richardson
2012-08-21Fixed a problem with the html5lib builder not handling comments correctly.Leonard Richardson
2012-08-20Prep for release.Leonard Richardson
2012-08-20Raise a more specific error (FeatureNotFound) when a requestedLeonard Richardson
2012-08-17Prep for release.Leonard Richardson