exopy_pulses.pulses.contexts.views.base_context_view module

Base view for all contexts.

class exopy_pulses.pulses.contexts.views.base_context_view.BaseContextView(parent=None, **kwargs)

Bases: enaml.widgets.container.Container

Base class for all Context views.

context

A value which allows objects of a given type or types.

Values will be tested using the PyObject_IsInstance C API call. This call is equivalent to isinstance(value, kind) and all the same rules apply.

The value of an Instance may be set to None.

core

A value which allows objects of a given type or types.

Values will be tested using the PyObject_IsInstance C API call. This call is equivalent to isinstance(value, kind) and all the same rules apply.

The value of an Instance may be set to None.

sequence

A value which allows objects of a given type or types.

Values will be tested using the PyObject_IsInstance C API call. This call is equivalent to isinstance(value, kind) and all the same rules apply.

The value of an Instance may be set to None.