Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-25 | Ensure html5lib always has valid internal linkage | Isaac Muse | |
html5lib, with malformed HTML, can end up with detached linkage internally. Improve the current code to ensure html5lib always has proper linkage. | |||
2018-12-24 | Clarified the software license. | Leonard Richardson | |
2018-12-24 | Keep track of the namespace abbreviations found while parsing the document. ↵ | Leonard Richardson | |
This makes select() work most of the time without requiring a value for 'namespaces'. | |||
2018-12-23 | Merged in next_previous_fixes from Isaac Muse. [bug=1782928,1798699] | Leonard Richardson | |
2018-12-22 | Fix next and previous linkage issues. Fixes issues #1806598 and #1782928. | Isaac Muse | |
2018-08-12 | Bump up to version 4.6.3 so I can re-release. | Leonard Richardson | |
2018-07-30 | Fix an exception when a custom formatter was asked to format a void | Leonard Richardson | |
element. [bug=1784408] | |||
2018-07-28 | Prep for release. | Leonard Richardson | |
2018-07-15 | You can pass a dictionary of into | Leonard Richardson | |
BeautifulSoup.new_tag. This makes it possible to create a tag with an attribute like 'name' that would otherwise be masked by another argument of new_tag. [bug=1779276] | |||
2018-07-15 | Improved the 'no parser specified' warning so it doesn't show up in a REPL. | Leonard Richardson | |
2018-07-14 | Fix an error in the warning when run from REPL. | Leonard Richardson | |
2018-07-14 | Bring in some more code from warnings.py. | Leonard Richardson | |
2018-07-14 | Improve the technique for finding the line number with the problematic ↵ | Leonard Richardson | |
method call. | |||
2018-07-14 | Improve the warning given when no parser is specified. [bug=1780571] | Leonard Richardson | |
2017-05-07 | Prep for 4.6.0 release. | Leonard Richardson | |
2017-05-07 | Corrected formatting of warning. | Leonard Richardson | |
2017-05-06 | Change no-parser-specified warning to avoid the implication that you should ↵ | Leonard Richardson | |
put your markup into square brackets. | |||
2017-01-02 | I need to do another release because of an error while running the release ↵ | Leonard Richardson | |
script. | |||
2017-01-02 | Prep for 4.5.2 release. | Leonard Richardson | |
2016-08-02 | Bump version number. | Leonard Richardson | |
2016-07-26 | Clarify that Beautiful Soup is no longer compatible with versions of Python ↵ | Leonard Richardson | |
pre-2.7. Contributed by Ville Skyttä. | |||
2016-07-26 | Spelling fixes | Ville Skyttä | |
2016-07-26 | Clarify Python 2(.7) support status | Ville Skyttä | |
2016-07-18 | Corrected an encoding error that happened when a BeautifulSoup | Leonard Richardson | |
object was copied. [bug=1554439] | |||
2016-07-17 | When a BeautifulSoup object is pickled but its tree builder cannot | Leonard Richardson | |
be pickled, its .builder attribute is set to None instead of being destroyed. This avoids a performance problem once the object is unpickled. [bug=1523629] | |||
2016-07-17 | Although the previously fixed problem only occurs when using the html5lib ↵ | Leonard Richardson | |
tree builder, it's not actually a problem with the tree builder itself. | |||
2016-07-17 | Fixed a bug in the html5lib treebuilder that deranged the tree | Leonard Richardson | |
when a whitespace element was reparented into a tag that contained an identical whitespace element. [bug=1505351] | |||
2016-07-17 | Use known_xml instead of continually adding underscores to is_xml. | Leonard Richardson | |
2016-07-16 | Beautiful Soup will now work with versions of html5lib greater than | Leonard Richardson | |
0.99999999. [bug=1603299] | |||
2016-07-16 | We don't run the check for a filename passed in as markup if the | Leonard Richardson | |
'filename' contains a less-than character; the less-than character indicates it's most likely a very small document. [bug=1577864] | |||
2016-07-16 | corrected typo. [bug=1561510] | Leonard Richardson | |
2016-07-16 | Specify the file and line number when warning about a | Leonard Richardson | |
BeautifulSoup object being instantiated without a parser being specified. [bug=1574647] | |||
2016-07-16 | Fixed a Python 3 ByteWarning when a URL was passed in as though it | Leonard Richardson | |
were markup. Thanks to James Salter for a patch and test. [bug=1533762] | |||
2016-07-16 | Rename COPYING.txt to LICENSE. Add a reference to LICENSE in every source file. | Leonard Richardson | |
2015-07-03 | Change setup.py to focus on creating wheels. | Leonard Richardson | |
2015-06-28 | It's now possible to pickle a BeautifulSoup object no matter which | Leonard Richardson | |
tree builder was used to create it. However, the only tree builder that survives the pickling process is the HTMLParserTreeBuilder ('html.parser'). If you unpickle a BeautifulSoup object created with some other tree builder, soup.builder will be None. [bug=1231545] | |||
2015-06-28 | Changed the way soup objects work under copy.copy(). Copying a | Leonard Richardson | |
NavigableString or a Tag will give you a new NavigableString that's equal to the old one but not connected to the parse tree. Patch by Martijn Peters. [bug=1307490] | |||
2015-06-28 | Reorganized changelog. | Leonard Richardson | |
2015-06-28 | Accept 'xml' as an unambiguous identifier for the lxml XML parser, since ↵ | Leonard Richardson | |
it's the only XML parser supported at the moment. | |||
2015-06-27 | Added an exclude_encodings argument to UnicodeDammit and to the | Leonard Richardson | |
Beautiful Soup constructor, which lets you prohibit the detection of an encoding that you know is wrong. [bug=1469408] | |||
2015-06-25 | You can now create a NavigableString or a subclass just by invoking | Leonard Richardson | |
the constructor. [bug=1294315] | |||
2015-06-23 | Made the previous fix nicer by adding arguments to setup() that let us ↵ | Leonard Richardson | |
preserve a tag's existing place in the tree. | |||
2015-06-23 | Got a hacky fix for the latest html5lib problem. | Leonard Richardson | |
2015-06-23 | Force object_was_parsed() to keep the tree intact even when an element | Leonard Richardson | |
from later in the document is moved into place. [bug=1430633] | |||
2014-12-10 | The warning when you pass in a filename or URL as markup will now be | Leonard Richardson | |
displayed correctly even if the filename or URL is a Unicode string. [bug=1268888] | |||
2014-12-07 | Tweaked the parser warning. | Leonard Richardson | |
2014-12-07 | Issue a warning if the BeautifulSoup constructor arguments do not explicitly ↵ | Leonard Richardson | |
name a parser. | |||
2013-10-02 | Restored the helpful syntax error that happens when you try to | Leonard Richardson | |
import the Python 2 edition of Beautiful Soup under Python 3. [bug=1213387] | |||
2013-10-02 | Prep for release. | Leonard Richardson | |
2013-10-01 | Fixed a crash when a short input contains data not valid in | Leonard Richardson | |
filenames. [bug=1232604] |