(self, newCh)
| 739 | return out |
| 740 | |
| 741 | def append(self, newCh): |
| 742 | if isinstance(newCh, ChannelObj): |
| 743 | self._channels.append(newCh) |
| 744 | return |
| 745 | |
| 746 | def pop(self, Ch=None): |
| 747 | if Ch not in range(len(self)): |
no outgoing calls
no test coverage detected