libtcspc.SelectExcept

final class libtcspc.SelectExcept(*event_types)[source]

Bases: Node

Processor that discards events of the listed types, passing others.

The complement of Select.

Parameters:

*event_types (EventType) – The event types to discard. Events of all other types pass through unchanged.

Notes

Events handled:

  • Events in event_types: discarded.

  • All other event types: pass through unchanged.

  • End of input: pass through.

See also

tcspc::select_except()

The underlying C++ factory function.

Select

Pass only the listed types, dropping others.

SelectAll

Forward every event unchanged.