``` union status = run | stop ; ``` it will be compiled to ``` python class Status(enum.Enum): __slots__ = ( , ) ... ```