Commit 82524c4f authored by Vincent Pelletier's avatar Vincent Pelletier

Make docstring relevant.

parent 4823cbef
...@@ -167,14 +167,12 @@ class SearchKey(object): ...@@ -167,14 +167,12 @@ class SearchKey(object):
@profiler_decorator @profiler_decorator
def _guessComparisonOperator(self, value): def _guessComparisonOperator(self, value):
""" """
From a basestring instance, return a contained operator. From a basestring instance, return an operator.
Value cannot be altered in the process. To be overloaded by subclasses, to customise operator retrieval.
value (string) value (string)
Returns: 2-tuple of strings Returns: operator as a string.
First element is the operator. None if there was no operator in value.
Second element is the value without the operator.
""" """
return self.default_comparison_operator return self.default_comparison_operator
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment