-
Notifications
You must be signed in to change notification settings - Fork 319
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from qdev-dk/new_syntax
New syntax
- Loading branch information
Showing
34 changed files
with
12,131 additions
and
5,009 deletions.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# set up the qcodes namespace | ||
# flake8: noqa (we don't need the "<...> imported but unused" error) | ||
|
||
from qcodes.station import Station | ||
from qcodes.loops import get_bg, halt_bg, Loop, Task, Wait | ||
|
||
from qcodes.data.manager import get_data_manager | ||
from qcodes.data.data_set import DataMode, DataSet | ||
from qcodes.data.data_array import DataArray | ||
from qcodes.data.format import Formatter, GNUPlotFormat | ||
from qcodes.data.io import DiskIO | ||
|
||
from qcodes.instrument.base import Instrument | ||
from qcodes.instrument.ip import IPInstrument | ||
from qcodes.instrument.visa import VisaInstrument | ||
from qcodes.instrument.mock import MockInstrument | ||
|
||
from qcodes.instrument.function import Function | ||
from qcodes.instrument.parameter import Parameter, InstrumentParameter | ||
from qcodes.instrument.sweep_values import SweepFixedValues, AdaptiveSweep | ||
|
||
from qcodes.utils.helpers import set_mp_method, reload_code | ||
|
||
# just for convenience in debugging, so we don't have to | ||
# separately import multiprocessing | ||
from multiprocessing import active_children |
Oops, something went wrong.