conntextual.ui.channel.pattern
index
/home/vkottler/src/vkottler/workspace/conntextual/conntextual/ui/channel/pattern.py

A module implementing an include/exclude pattern matching interface.

 
Modules
       
re

 
Classes
       
builtins.tuple(builtins.object)
PatternPair

 
class PatternPair(builtins.tuple)
    PatternPair(includes: List[re.Pattern[str]], excludes: List[re.Pattern[str]])
 
A container for managing pattern data.
 
 
Method resolution order:
PatternPair
builtins.tuple
builtins.object

Methods defined here:
__getnewargs__(self)
Return self as a plain tuple.  Used by copy and pickle.
__repr__(self)
Return a nicely formatted representation string
_asdict(self)
Return a new dict which maps field names to their values.
_replace(self, /, **kwds)
Return a new PatternPair object replacing specified fields with new values
matches(self, data: str) -> bool
Determine whether or not a string matches this pattern pair.

Class methods defined here:
_make(iterable) from builtins.type
Make a new PatternPair object from a sequence or iterable

Static methods defined here:
__new__(_cls, includes: List[re.Pattern[str]], excludes: List[re.Pattern[str]])
Create new instance of PatternPair(includes, excludes)
from_dict(data: dict[str, typing.Union[str, typing.List[str]]]) -> 'PatternPair'
Create a pattern pair from dictionary data.

Data descriptors defined here:
includes
Alias for field number 0
excludes
Alias for field number 1

Data and other attributes defined here:
__annotations__ = {'excludes': typing.List[re.Pattern[str]], 'includes': typing.List[re.Pattern[str]]}
__match_args__ = ('includes', 'excludes')
__orig_bases__ = (<function NamedTuple>,)
_field_defaults = {}
_fields = ('includes', 'excludes')

Methods inherited from builtins.tuple:
__add__(self, value, /)
Return self+value.
__contains__(self, key, /)
Return bool(key in self).
__eq__(self, value, /)
Return self==value.
__ge__(self, value, /)
Return self>=value.
__getattribute__(self, name, /)
Return getattr(self, name).
__getitem__(self, key, /)
Return self[key].
__gt__(self, value, /)
Return self>value.
__hash__(self, /)
Return hash(self).
__iter__(self, /)
Implement iter(self).
__le__(self, value, /)
Return self<=value.
__len__(self, /)
Return len(self).
__lt__(self, value, /)
Return self<value.
__mul__(self, value, /)
Return self*value.
__ne__(self, value, /)
Return self!=value.
__rmul__(self, value, /)
Return value*self.
count(self, value, /)
Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /)
Return first index of value.
 
Raises ValueError if the value is not present.

Class methods inherited from builtins.tuple:
__class_getitem__(...) from builtins.type
See PEP 585

 
Data
        List = typing.List
Optional = typing.Optional
PatternList = typing.List[re.Pattern[str]]
StringOrList = typing.Union[str, typing.List[str]]
Union = typing.Union