Fix since annotation for str "in" operator
This commit is contained in:
parent
bcc127b3fd
commit
273605f859
|
@ -175,12 +175,12 @@ class StringHolder(ObjectHolder[str]):
|
||||||
except IndexError:
|
except IndexError:
|
||||||
raise InvalidArguments(f'Index {other} out of bounds of string of size {len(self.held_object)}.')
|
raise InvalidArguments(f'Index {other} out of bounds of string of size {len(self.held_object)}.')
|
||||||
|
|
||||||
@FeatureNew('"in" string operator', '0.64.0')
|
@FeatureNew('"in" string operator', '1.0.0')
|
||||||
@typed_operator(MesonOperator.IN, str)
|
@typed_operator(MesonOperator.IN, str)
|
||||||
def op_in(self, other: str) -> bool:
|
def op_in(self, other: str) -> bool:
|
||||||
return other in self.held_object
|
return other in self.held_object
|
||||||
|
|
||||||
@FeatureNew('"not in" string operator', '0.64.0')
|
@FeatureNew('"not in" string operator', '1.0.0')
|
||||||
@typed_operator(MesonOperator.NOT_IN, str)
|
@typed_operator(MesonOperator.NOT_IN, str)
|
||||||
def op_notin(self, other: str) -> bool:
|
def op_notin(self, other: str) -> bool:
|
||||||
return other not in self.held_object
|
return other not in self.held_object
|
||||||
|
|
Loading…
Reference in New Issue