Fixed #72 : Exception when get_results(id=10)
Fixed #74 : Keyword parameters are no longer recognized when a concept that redefines equality is created Fixed #118 : RecursionError: maximum recursion depth exceeded Fixed #119 : PreventCircularReferenceEvaluator Fixed #121 : Plural are not updated when new elements are added Fixed #123 : BaseCache : Values in cache can be evicted before being committed Fixed #105 : TOO_MANY_ERROR is not the relevant error when results are filtered
This commit is contained in:
@@ -499,10 +499,10 @@ class BaseSyaParser:
|
||||
self._state = self.all_states.get_state(state)
|
||||
|
||||
def get_unrecognized_tokens_requests_cache(self):
|
||||
raise NotImplementedError()
|
||||
raise NotImplementedError(f"BaseSyaParser.get_unrecognized_tokens_requests_cache()")
|
||||
|
||||
def get_tokens_parser(self):
|
||||
raise NotImplementedError()
|
||||
raise NotImplementedError(f"BaseSyaParser.get_tokens_parser()")
|
||||
|
||||
def add_debug(self, text, is_error=False, **kwargs):
|
||||
args = {"token": self.parser_input.token,
|
||||
|
||||
Reference in New Issue
Block a user