Skip to content

Commit 4bfb3ff

Browse files
authored
feat(tket2-py): Expose new modules in python (#860)
1 parent d66c1d6 commit 4bfb3ff

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

tket2-py/test/test_exts.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from tket2.extensions import opaque_bool # noqa: F401
2+
from tket2.extensions import debug # noqa: F401
3+
from tket2.extensions import rotation # noqa: F401
4+
from tket2.extensions import futures # noqa: F401
5+
from tket2.extensions import qsystem # noqa: F401
6+
from tket2.extensions import qsystem_random # noqa: F401
7+
from tket2.extensions import qsystem_utils # noqa: F401
8+
from tket2.extensions import quantum # noqa: F401
9+
from tket2.extensions import result # noqa: F401
10+
from tket2.extensions import wasm # noqa: F401
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
11
from tket2_exts import (
2+
opaque_bool,
3+
debug,
24
rotation,
35
futures,
46
qsystem,
57
qsystem_random,
68
qsystem_utils,
79
quantum,
810
result,
11+
wasm,
912
)
1013

1114

1215
__all__ = [
16+
"debug",
17+
"opaque_bool",
1318
"rotation",
1419
"futures",
1520
"qsystem",
1621
"qsystem_random",
1722
"qsystem_utils",
1823
"quantum",
1924
"result",
25+
"wasm",
2026
]

0 commit comments

Comments
 (0)