diff options
Diffstat (limited to 'logical_search.py')
| -rw-r--r-- | logical_search.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/logical_search.py b/logical_search.py index 76c2f86..b55e689 100644 --- a/logical_search.py +++ b/logical_search.py @@ -1,5 +1,9 @@ #!/usr/bin/env python3 +"""This is a module concerned with the creation of and searching of a +corpus of documents. The corpus is held in memory for fast +searching.""" + from __future__ import annotations import enum @@ -12,6 +16,7 @@ class ParseError(Exception): """An error encountered while parsing a logical search expression.""" def __init__(self, message: str): + super().__init__() self.message = message |
