MCPcopy Create free account
hub / github.com/apache/qpid-proton / __add__

Method __add__

python/proton/_data.py:541–543  ·  view source on GitHub ↗

Handles list1 + list2

(self, t: Iterable[Any])

Source from the content-addressed store, hash-verified

539 return super(SymbolList, self).insert(i, _check_is_symbol(v, self.raise_on_error))
540
541 def __add__(self, t: Iterable[Any]) -> 'SymbolList':
542 """ Handles list1 + list2 """
543 return SymbolList(super(SymbolList, self).__add__(self._check_list(t)), raise_on_error=self.raise_on_error)
544
545 def __iadd__(self, t):
546 """ Handles list1 += list2 """

Callers

nothing calls this directly

Calls 2

_check_listMethod · 0.95
SymbolListClass · 0.85

Tested by

no test coverage detected