diff options
author | Leonard Richardson <leonardr@segfault.org> | 2018-12-24 10:36:00 -0500 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2018-12-24 10:36:00 -0500 |
commit | b5af2c27d41c26112f9943e692e05eeafc5919dc (patch) | |
tree | f4f092408f64de5a7d40d02968884dbc5548acb2 /bs4/builder | |
parent | 3c3b6467d8c96042d1292c14a9b6d4518a298b6b (diff) |
Clarified the software license.
Diffstat (limited to 'bs4/builder')
-rw-r--r-- | bs4/builder/__init__.py | 4 | ||||
-rw-r--r-- | bs4/builder/_html5lib.py | 4 | ||||
-rw-r--r-- | bs4/builder/_htmlparser.py | 4 | ||||
-rw-r--r-- | bs4/builder/_lxml.py | 5 |
4 files changed, 9 insertions, 8 deletions
diff --git a/bs4/builder/__init__.py b/bs4/builder/__init__.py index 610d42f..46b28bd 100644 --- a/bs4/builder/__init__.py +++ b/bs4/builder/__init__.py @@ -1,5 +1,5 @@ -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. +# Use of this source code is governed by the MIT license. +__license__ = "MIT" from collections import defaultdict import itertools diff --git a/bs4/builder/_html5lib.py b/bs4/builder/_html5lib.py index 388c3d6..2c929b9 100644 --- a/bs4/builder/_html5lib.py +++ b/bs4/builder/_html5lib.py @@ -1,5 +1,5 @@ -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. +# Use of this source code is governed by the MIT license. +__license__ = "MIT" __all__ = [ 'HTML5TreeBuilder', diff --git a/bs4/builder/_htmlparser.py b/bs4/builder/_htmlparser.py index ee6c685..ff09ca3 100644 --- a/bs4/builder/_htmlparser.py +++ b/bs4/builder/_htmlparser.py @@ -1,8 +1,8 @@ # encoding: utf-8 """Use the HTMLParser library to parse HTML files that aren't too bad.""" -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. +# Use of this source code is governed by the MIT license. +__license__ = "MIT" __all__ = [ 'HTMLParserTreeBuilder', diff --git a/bs4/builder/_lxml.py b/bs4/builder/_lxml.py index 7debf56..3a1700c 100644 --- a/bs4/builder/_lxml.py +++ b/bs4/builder/_lxml.py @@ -1,5 +1,6 @@ -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. +# Use of this source code is governed by the MIT license. +__license__ = "MIT" + __all__ = [ 'LXMLTreeBuilderForXML', 'LXMLTreeBuilder', |