| Commit message (Expand) | Author | Age | Files | Lines |
* | Clarify Python 2(.7) support status | Ville Skyttä | 2016-07-26 | 2 | -3/+2 |
* | Fixed test that fails in Python 3.5. | Leonard Richardson | 2016-07-19 | 1 | -2/+2 |
* | Pass in bytes so that the BeautifulSoup object always has an original_encoding. | Leonard Richardson | 2016-07-18 | 1 | -1/+1 |
* | If a search against each individual value of a multi-valued | Leonard Richardson | 2016-07-18 | 2 | -18/+23 |
* | Corrected an encoding error that happened when a BeautifulSoup | Leonard Richardson | 2016-07-18 | 2 | -1/+17 |
* | Added support for CSS selector values that contain quoted spaces, | Leonard Richardson | 2016-07-18 | 2 | -8/+14 |
* | The argument to now works correctly, though it's | Leonard Richardson | 2016-07-18 | 2 | -5/+11 |
* | Use a dedicated logger instead of the root logger. [bug=1511661] | Leonard Richardson | 2016-07-17 | 1 | -1/+1 |
* | Use a dedicated logger instead of the root logger. [bug=1511661] | Leonard Richardson | 2016-07-17 | 1 | -3/+4 |
* | When a BeautifulSoup object is pickled but its tree builder cannot | Leonard Richardson | 2016-07-17 | 1 | -1/+1 |
* | Although the previously fixed problem only occurs when using the html5lib tre... | Leonard Richardson | 2016-07-17 | 1 | -2/+2 |
* | Fixed a bug in the html5lib treebuilder that deranged the tree | Leonard Richardson | 2016-07-17 | 2 | -1/+23 |
* | Use known_xml instead of continually adding underscores to is_xml. | Leonard Richardson | 2016-07-17 | 2 | -10/+14 |
* | Whenever possible, keep track ahead of time whether a PageElement is HTML or ... | Leonard Richardson | 2016-07-17 | 1 | -11/+30 |
* | Beautiful Soup will now work with versions of html5lib greater than | Leonard Richardson | 2016-07-16 | 3 | -9/+40 |
* | We don't run the check for a filename passed in as markup if the | Leonard Richardson | 2016-07-16 | 1 | -1/+1 |
* | Removed imports to pdb, since pdb is not available in some environments. [bug... | Leonard Richardson | 2016-07-16 | 5 | -5/+0 |
* | corrected typo. [bug=1561510] | Leonard Richardson | 2016-07-16 | 1 | -2/+3 |
* | Specify the file and line number when warning about a | Leonard Richardson | 2016-07-16 | 1 | -1/+8 |
* | The contents of <textarea> tags will no longer be modified when the | Leonard Richardson | 2016-07-16 | 3 | -7/+31 |
* | Fixed a Python 3 ByteWarning when a URL was passed in as though it | Leonard Richardson | 2016-07-16 | 2 | -18/+59 |
* | Added a separate class for XML processing instructions, which have a slightly... | Leonard Richardson | 2016-07-16 | 4 | -1/+19 |
* | Rename COPYING.txt to LICENSE. Add a reference to LICENSE in every source file. | Leonard Richardson | 2016-07-16 | 9 | -2/+24 |
* | Add a __license__ statement to all source files. | Leonard Richardson | 2015-09-28 | 4 | -0/+8 |
* | Fixed a parse bug with the html5lib tree-builder. Thanks to Roel | Leonard Richardson | 2015-09-28 | 2 | -1/+11 |
* | Improved the implementation of CSS selector grouping. Thanks to Orangain for ... | Leonard Richardson | 2015-09-28 | 2 | -190/+201 |
* | Corrected the output of Declaration objects. [bug=1477847] | Leonard Richardson | 2015-09-28 | 3 | -2/+11 |
* | Fixed a bug that deranged the tree when part of it was | Leonard Richardson | 2015-09-28 | 2 | -5/+30 |
|\ |
|
| * | Use identity comparisons for tree traversal | Eric Wieser | 2015-08-06 | 1 | -5/+5 |
* | | Don't allow inserting None into a tag. | Leonard Richardson | 2015-09-28 | 1 | -0/+2 |
|/ |
|
* | Fixed the test_detect_utf8 test so that it works when chardet is | Leonard Richardson | 2015-07-05 | 1 | -2/+3 |
* | Change setup.py to focus on creating wheels. | Leonard Richardson | 2015-07-03 | 1 | -1/+1 |
* | Unicode data cannot have a byte-order mark. Returning early stops a warning f... | Leonard Richardson | 2015-07-03 | 1 | -0/+3 |
* | It's now possible to pickle a BeautifulSoup object no matter which | Leonard Richardson | 2015-06-28 | 5 | -3/+44 |
* | Changed the way soup objects work under copy.copy(). Copying a | Leonard Richardson | 2015-06-28 | 4 | -6/+47 |
* | Copying a NavigableString will give you a new NavigableString that is not con... | Leonard Richardson | 2015-06-28 | 2 | -1/+23 |
* | Reorganized changelog. | Leonard Richardson | 2015-06-28 | 1 | -2/+2 |
* | Fixed a bug where Element.extract() could create an infinite loop in | Leonard Richardson | 2015-06-28 | 2 | -10/+14 |
* | Accept 'xml' as an unambiguous identifier for the lxml XML parser, since it's... | Leonard Richardson | 2015-06-28 | 2 | -2/+8 |
* | Raise a NotImplementedError whenever an unsupported CSS pseudoclass | Leonard Richardson | 2015-06-28 | 2 | -27/+38 |
* | Added another layer of security to catch cases where lxml and html5lib are no... | Leonard Richardson | 2015-06-27 | 1 | -4/+13 |
* | Added an exclude_encodings argument to UnicodeDammit and to the | Leonard Richardson | 2015-06-27 | 6 | -9/+46 |
* | Added a sanity check helper method that makes sure all the elements of a tree... | Leonard Richardson | 2015-06-26 | 3 | -9/+21 |
* | Introduced the select_one() method, which uses a CSS selector but | Leonard Richardson | 2015-06-25 | 2 | -1/+19 |
* | The text argument to the find_* methods is now called string, | Leonard Richardson | 2015-06-25 | 2 | -1/+7 |
* | Make it possible to invoke the Tag() constructor without providing a builder.... | Leonard Richardson | 2015-06-25 | 1 | -3/+6 |
* | You can now create a NavigableString or a subclass just by invoking | Leonard Richardson | 2015-06-25 | 2 | -5/+5 |
* | Improved the exception raised when you call .unwrap() or | Leonard Richardson | 2015-06-25 | 2 | -1/+19 |
* | __repr__ now returns an ASCII bytestring in Python 2, and a Unicode string in... | Leonard Richardson | 2015-06-25 | 2 | -3/+22 |
* | Fixed a crash in Unicode, Dammit's encoding detector when the name | Leonard Richardson | 2015-06-25 | 2 | -1/+9 |