-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: do not decorate `ELLIPSIS` with `<b>` tags Multiple matches are merged with `ELLIPSIS` as a separator. This reverses the order of operations so that the matches are decorated before they are merged. This way, the content of `ELLIPSIS` is not decorated with HTML `<b>` tags. * fix: use correct module for Iterable Collections Abstract Base Classes are deprecated in `collections` since Python 3.3. They will be moved to `collections.abc` after Python 3.8. https://docs.python.org/3.8/library/collections.html
- Loading branch information
1 parent
decb566
commit 3cef5ef
Showing
4 changed files
with
25 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
""" Container module for testing / demoing search """ | ||
|
||
__version__ = '3.2.0' | ||
__version__ = '3.3.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters