forked from M-Labs/artiq
Robert Jordens
765001054d
perl -i -pe 's/^from artiq import \*$/from artiq.experiment import */' your_experiments/*.py (assuming you skipped the changes form the previous commit)
11 lines
495 B
Python
11 lines
495 B
Python
from artiq.coredevice import exceptions, dds
|
|
from artiq.coredevice.exceptions import (RTIOUnderflow, RTIOSequenceError,
|
|
RTIOCollisionError)
|
|
from artiq.coredevice.dds import (PHASE_MODE_CONTINUOUS, PHASE_MODE_ABSOLUTE,
|
|
PHASE_MODE_TRACKING)
|
|
|
|
__all__ = []
|
|
__all__ += ["RTIOUnderflow", "RTIOSequenceError", "RTIOCollisionError"]
|
|
__all__ += ["PHASE_MODE_CONTINUOUS", "PHASE_MODE_ABSOLUTE",
|
|
"PHASE_MODE_TRACKING"]
|