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)
14 lines
412 B
Python
14 lines
412 B
Python
from artiq.language import core, types, environment, units, scan
|
|
from artiq.language.core import *
|
|
from artiq.language.types import *
|
|
from artiq.language.environment import *
|
|
from artiq.language.units import *
|
|
from artiq.language.scan import *
|
|
|
|
__all__ = []
|
|
__all__.extend(core.__all__)
|
|
__all__.extend(types.__all__)
|
|
__all__.extend(environment.__all__)
|
|
__all__.extend(units.__all__)
|
|
__all__.extend(scan.__all__)
|