guppylang-internals 0.27.0__py3-none-any.whl → 0.28.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- guppylang_internals/__init__.py +1 -1
- guppylang_internals/ast_util.py +37 -18
- guppylang_internals/cfg/analysis.py +6 -6
- guppylang_internals/cfg/builder.py +41 -12
- guppylang_internals/cfg/cfg.py +1 -1
- guppylang_internals/checker/core.py +1 -1
- guppylang_internals/checker/errors/comptime_errors.py +0 -12
- guppylang_internals/checker/expr_checker.py +27 -17
- guppylang_internals/checker/func_checker.py +4 -3
- guppylang_internals/checker/stmt_checker.py +1 -1
- guppylang_internals/compiler/cfg_compiler.py +1 -1
- guppylang_internals/compiler/core.py +17 -4
- guppylang_internals/compiler/expr_compiler.py +9 -9
- guppylang_internals/decorator.py +2 -2
- guppylang_internals/definition/common.py +1 -0
- guppylang_internals/definition/custom.py +2 -2
- guppylang_internals/definition/declaration.py +3 -3
- guppylang_internals/definition/function.py +8 -1
- guppylang_internals/definition/metadata.py +1 -1
- guppylang_internals/definition/pytket_circuits.py +44 -65
- guppylang_internals/definition/value.py +1 -1
- guppylang_internals/definition/wasm.py +3 -3
- guppylang_internals/diagnostic.py +17 -1
- guppylang_internals/engine.py +83 -30
- guppylang_internals/error.py +1 -1
- guppylang_internals/nodes.py +269 -3
- guppylang_internals/span.py +7 -3
- guppylang_internals/std/_internal/checker.py +104 -2
- guppylang_internals/std/_internal/debug.py +5 -3
- guppylang_internals/tracing/builtins_mock.py +2 -2
- guppylang_internals/tracing/object.py +2 -2
- guppylang_internals/tys/parsing.py +4 -1
- guppylang_internals/tys/qubit.py +6 -4
- guppylang_internals/tys/subst.py +2 -2
- guppylang_internals/tys/ty.py +2 -2
- guppylang_internals/wasm_util.py +1 -2
- {guppylang_internals-0.27.0.dist-info → guppylang_internals-0.28.0.dist-info}/METADATA +5 -4
- {guppylang_internals-0.27.0.dist-info → guppylang_internals-0.28.0.dist-info}/RECORD +40 -40
- {guppylang_internals-0.27.0.dist-info → guppylang_internals-0.28.0.dist-info}/WHEEL +0 -0
- {guppylang_internals-0.27.0.dist-info → guppylang_internals-0.28.0.dist-info}/licenses/LICENCE +0 -0
guppylang_internals/tys/qubit.py
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import functools
|
|
2
|
-
from typing import Any, cast
|
|
2
|
+
from typing import TYPE_CHECKING, Any, cast
|
|
3
3
|
|
|
4
|
-
from guppylang_internals.definition.ty import TypeDef
|
|
5
4
|
from guppylang_internals.tys.arg import TypeArg
|
|
6
5
|
from guppylang_internals.tys.common import Visitor
|
|
7
6
|
from guppylang_internals.tys.ty import OpaqueType, Type
|
|
8
7
|
|
|
8
|
+
if TYPE_CHECKING:
|
|
9
|
+
from guppylang_internals.definition.ty import TypeDef
|
|
10
|
+
|
|
9
11
|
|
|
10
12
|
@functools.cache
|
|
11
13
|
def qubit_ty() -> Type:
|
|
@@ -17,7 +19,7 @@ def qubit_ty() -> Type:
|
|
|
17
19
|
from guppylang.std.quantum import qubit
|
|
18
20
|
|
|
19
21
|
assert isinstance(qubit, GuppyDefinition)
|
|
20
|
-
qubit_ty = cast(TypeDef, qubit.wrapped).check_instantiate([])
|
|
22
|
+
qubit_ty = cast("TypeDef", qubit.wrapped).check_instantiate([])
|
|
21
23
|
return qubit_ty
|
|
22
24
|
|
|
23
25
|
|
|
@@ -36,7 +38,7 @@ class QubitFinder(Visitor):
|
|
|
36
38
|
pass
|
|
37
39
|
|
|
38
40
|
@functools.singledispatchmethod
|
|
39
|
-
def visit(self, ty: Any) -> bool:
|
|
41
|
+
def visit(self, ty: Any) -> bool:
|
|
40
42
|
return False
|
|
41
43
|
|
|
42
44
|
@visit.register
|
guppylang_internals/tys/subst.py
CHANGED
|
@@ -32,7 +32,7 @@ class Substituter(Transformer):
|
|
|
32
32
|
self.subst = subst
|
|
33
33
|
|
|
34
34
|
@functools.singledispatchmethod
|
|
35
|
-
def transform(self, ty: Any) -> Any | None:
|
|
35
|
+
def transform(self, ty: Any) -> Any | None:
|
|
36
36
|
return None
|
|
37
37
|
|
|
38
38
|
@transform.register
|
|
@@ -56,7 +56,7 @@ class Instantiator(Transformer):
|
|
|
56
56
|
self.inst = inst
|
|
57
57
|
|
|
58
58
|
@functools.singledispatchmethod
|
|
59
|
-
def transform(self, ty: Any) -> Any | None:
|
|
59
|
+
def transform(self, ty: Any) -> Any | None:
|
|
60
60
|
return None
|
|
61
61
|
|
|
62
62
|
@transform.register
|
guppylang_internals/tys/ty.py
CHANGED
|
@@ -97,7 +97,7 @@ class TypeBase(ToHugr[ht.Type], Transformable["Type"], ABC):
|
|
|
97
97
|
|
|
98
98
|
# We use a custom printer that takes care of inserting parentheses and choosing
|
|
99
99
|
# unique names
|
|
100
|
-
return TypePrinter().visit(cast(Type, self))
|
|
100
|
+
return TypePrinter().visit(cast("Type", self))
|
|
101
101
|
|
|
102
102
|
|
|
103
103
|
@dataclass(frozen=True)
|
|
@@ -567,7 +567,7 @@ class FunctionType(ParametrizedTypeBase):
|
|
|
567
567
|
remaining_params,
|
|
568
568
|
# Comptime type arguments also need to be instantiated
|
|
569
569
|
comptime_args=[
|
|
570
|
-
cast(ConstArg, arg.transform(inst)) for arg in self.comptime_args
|
|
570
|
+
cast("ConstArg", arg.transform(inst)) for arg in self.comptime_args
|
|
571
571
|
],
|
|
572
572
|
)
|
|
573
573
|
|
guppylang_internals/wasm_util.py
CHANGED
|
@@ -26,8 +26,7 @@ class ConcreteWasmModule:
|
|
|
26
26
|
@dataclass(frozen=True)
|
|
27
27
|
class WasmSignatureError(Error):
|
|
28
28
|
title: ClassVar[str] = (
|
|
29
|
-
"Invalid signature for @wasm function `{fn_name}`\n"
|
|
30
|
-
"in wasm file:\n`{filename}`"
|
|
29
|
+
"Invalid signature for @wasm function `{fn_name}`\nin wasm file:\n`{filename}`"
|
|
31
30
|
)
|
|
32
31
|
fn_name: str
|
|
33
32
|
filename: str
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: guppylang-internals
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.28.0
|
|
4
4
|
Summary: Compiler internals for `guppylang` package.
|
|
5
5
|
Author-email: Mark Koch <mark.koch@quantinuum.com>, TKET development team <tket-support@quantinuum.com>
|
|
6
6
|
Maintainer-email: Mark Koch <mark.koch@quantinuum.com>, TKET development team <tket-support@quantinuum.com>
|
|
@@ -219,12 +219,13 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
219
219
|
Classifier: Programming Language :: Python :: 3.14
|
|
220
220
|
Classifier: Topic :: Software Development :: Compilers
|
|
221
221
|
Requires-Python: <4,>=3.10
|
|
222
|
-
Requires-Dist: hugr~=0.15.
|
|
222
|
+
Requires-Dist: hugr~=0.15.1
|
|
223
|
+
Requires-Dist: pytket>=1.34
|
|
223
224
|
Requires-Dist: tket-exts~=0.12.0
|
|
225
|
+
Requires-Dist: tket>=0.12.7
|
|
224
226
|
Requires-Dist: typing-extensions<5,>=4.9.0
|
|
225
|
-
Requires-Dist: wasmtime
|
|
227
|
+
Requires-Dist: wasmtime<41.1,>=38.0
|
|
226
228
|
Provides-Extra: pytket
|
|
227
|
-
Requires-Dist: pytket>=1.34; extra == 'pytket'
|
|
228
229
|
Description-Content-Type: text/markdown
|
|
229
230
|
|
|
230
231
|
# guppylang-internals
|
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
guppylang_internals/__init__.py,sha256=
|
|
2
|
-
guppylang_internals/ast_util.py,sha256=
|
|
3
|
-
guppylang_internals/decorator.py,sha256=
|
|
4
|
-
guppylang_internals/diagnostic.py,sha256=
|
|
1
|
+
guppylang_internals/__init__.py,sha256=KM7L1NJ-D2NCLrdyfv3tq7XPLy4kTzjJx6tjX8hL8AM,130
|
|
2
|
+
guppylang_internals/ast_util.py,sha256=UX_KTTnI743zRWaSfp6WV_4QHIrAV7OnsiX38f0tmns,13092
|
|
3
|
+
guppylang_internals/decorator.py,sha256=v3nkIA3yhC5PojpqJ-AOiuXnG7wTqOQZlBlb2RyOYL8,14191
|
|
4
|
+
guppylang_internals/diagnostic.py,sha256=lyJvN3duViAIfQVY4tgt2c-4aQfR08RIAe-JWkhgjuI,21635
|
|
5
5
|
guppylang_internals/dummy_decorator.py,sha256=LXTXrdcrr55YzerX3qrHS23q6S9pVdpUAvhprWzKH6E,2330
|
|
6
|
-
guppylang_internals/engine.py,sha256=
|
|
7
|
-
guppylang_internals/error.py,sha256=
|
|
6
|
+
guppylang_internals/engine.py,sha256=JPSTs75erAZquNxo5POT0v3D_d0Qci00exSVf4mft4I,12733
|
|
7
|
+
guppylang_internals/error.py,sha256=CiOQALJbJ8PXA0N-O4lQ11wgQ6yCjqk-_4Mg6be8ts4,3395
|
|
8
8
|
guppylang_internals/experimental.py,sha256=yERQgpT7P-x0-nr4gU4PdUCntByQwF2I9rfjpWtgqn4,3115
|
|
9
9
|
guppylang_internals/ipython_inspect.py,sha256=rY2DpSpSBrRk0IZmuoz7jh35kGZHQnHLAQQFdb_-WnI,931
|
|
10
|
-
guppylang_internals/nodes.py,sha256=
|
|
10
|
+
guppylang_internals/nodes.py,sha256=_HnEP2p1YDiM6J-k_UVO3oG9-vUnShpDkTqJ3ItHRyk,21423
|
|
11
11
|
guppylang_internals/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
guppylang_internals/span.py,sha256=
|
|
13
|
-
guppylang_internals/wasm_util.py,sha256=
|
|
12
|
+
guppylang_internals/span.py,sha256=55c1G7QacrYI52VJlq0tw9nz4UoMZfqZ3ViqyrKzBY4,5137
|
|
13
|
+
guppylang_internals/wasm_util.py,sha256=ajhY1lymbb3ZXxW63BoUK1BPQpSrjT4I2xaCUcaUP5w,3583
|
|
14
14
|
guppylang_internals/cfg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
guppylang_internals/cfg/analysis.py,sha256=
|
|
15
|
+
guppylang_internals/cfg/analysis.py,sha256=41FT4ts38GPYawNNBD1WQLSPp7t6oRuu9-Kv6HDyMDY,8367
|
|
16
16
|
guppylang_internals/cfg/bb.py,sha256=TxV5yHRqiH86lvLR0g4EZ4fs7S6Axoof1l0TIAZArJM,8591
|
|
17
|
-
guppylang_internals/cfg/builder.py,sha256=
|
|
18
|
-
guppylang_internals/cfg/cfg.py,sha256=
|
|
17
|
+
guppylang_internals/cfg/builder.py,sha256=6HVuVjtgPaFjzuMHtbBz6OX7fS5JhJVI9GYXZv6JkmQ,29650
|
|
18
|
+
guppylang_internals/cfg/cfg.py,sha256=EmKvILolYoTMSO2wrYRfPWaM-qfMCvdumvcWVJRxUm4,4491
|
|
19
19
|
guppylang_internals/checker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
guppylang_internals/checker/cfg_checker.py,sha256=0hDxw2CTbTbjewtDjaoBehgon17tJaQG9YPO_qR6P0Q,13667
|
|
21
|
-
guppylang_internals/checker/core.py,sha256=
|
|
22
|
-
guppylang_internals/checker/expr_checker.py,sha256=
|
|
23
|
-
guppylang_internals/checker/func_checker.py,sha256=
|
|
21
|
+
guppylang_internals/checker/core.py,sha256=IH3-9kuagCh6BtX7_hcjeNmfT8VUUCSzYoFUUan2n8A,18165
|
|
22
|
+
guppylang_internals/checker/expr_checker.py,sha256=LBCL98bEHUkfRLcLN0zulu_jN-cPX6l4lDJvE0VMTt4,61211
|
|
23
|
+
guppylang_internals/checker/func_checker.py,sha256=BuMdrs6PkrzUoSOD8BrCf0ZxC8ixf12xPMJVwZ2i7Ig,16125
|
|
24
24
|
guppylang_internals/checker/linearity_checker.py,sha256=cVgoUshu6YPEJ2mgk3RUWx38qt52WNMxjyLVV5eqgD4,37160
|
|
25
25
|
guppylang_internals/checker/modifier_checker.py,sha256=ruhEkbT4g9YIJXOGRsfpdzUsbXxEbS95PC1LG-EAl3o,4175
|
|
26
|
-
guppylang_internals/checker/stmt_checker.py,sha256=
|
|
26
|
+
guppylang_internals/checker/stmt_checker.py,sha256=Fp7KoSiKWdIHOM-iplRf5wpTJeu5XQ9LaRzq71fEZzM,20787
|
|
27
27
|
guppylang_internals/checker/unitary_checker.py,sha256=TVUT4JskaOzNVLcMrQwOd5t5MBLdHC2jFEtFHzlOW8I,4512
|
|
28
28
|
guppylang_internals/checker/errors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
guppylang_internals/checker/errors/comptime_errors.py,sha256=
|
|
29
|
+
guppylang_internals/checker/errors/comptime_errors.py,sha256=SOISi-3ljagJa5fiWsPNk6rLIgh0-iq9RltdnRLwItk,3082
|
|
30
30
|
guppylang_internals/checker/errors/generic.py,sha256=r-BiSrmJh9jfXlxE029GMQ8yj30_qOTW2RAQsd3HYzs,2050
|
|
31
31
|
guppylang_internals/checker/errors/linearity.py,sha256=jKp_IExMySGYjxEw-VbvVNgUewW6jRieseMLB4-twPA,8978
|
|
32
32
|
guppylang_internals/checker/errors/type_errors.py,sha256=KUmcpN3tGLI_8BogcGKfV_N5BO7yqEBPgyHmf8hk-3M,10619
|
|
33
33
|
guppylang_internals/checker/errors/wasm.py,sha256=TlwQRtlA0zpu8xwkBHWPYc25OIb6NrMHRxuYUfyD0Rg,956
|
|
34
34
|
guppylang_internals/compiler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
guppylang_internals/compiler/cfg_compiler.py,sha256=
|
|
36
|
-
guppylang_internals/compiler/core.py,sha256=
|
|
37
|
-
guppylang_internals/compiler/expr_compiler.py,sha256=
|
|
35
|
+
guppylang_internals/compiler/cfg_compiler.py,sha256=K-hf2wi3VSQI1TW6h3cUGY8_gMmQvVo152Gjqeyt3yA,9006
|
|
36
|
+
guppylang_internals/compiler/core.py,sha256=fMmbxo6Z210cFyGSWDuyQyNSbpNUNhe_7m95IbufjI8,31998
|
|
37
|
+
guppylang_internals/compiler/expr_compiler.py,sha256=rM4VuG9s974MQSBlmjPVXIpY_LSoMFZ9qnUZOpj6qf0,37934
|
|
38
38
|
guppylang_internals/compiler/func_compiler.py,sha256=0bo28RNsFZDYmllle-yFUXKC0UJsLl2TVjr3gvDMJVA,3377
|
|
39
39
|
guppylang_internals/compiler/hugr_extension.py,sha256=eFUcxzBZoVzXV-AqEOJlh_rJkyuS3vFv1WKGOHjloJs,7966
|
|
40
40
|
guppylang_internals/compiler/modifier_compiler.py,sha256=LrPLldlcFSjhKdHmx8034SLwKLRI-SE8LhEXcOLDNnQ,6506
|
|
41
41
|
guppylang_internals/compiler/qtm_platform_extension.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
42
|
guppylang_internals/compiler/stmt_compiler.py,sha256=cdOgqzRVP1hYeGbGftgY8LlFRHLWdgFPjlhK-khoMvw,9340
|
|
43
43
|
guppylang_internals/definition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
-
guppylang_internals/definition/common.py,sha256=
|
|
44
|
+
guppylang_internals/definition/common.py,sha256=AmNoht3dFs7s0UzKZXsnipZe90hz7nLNm3jqObQieLE,6970
|
|
45
45
|
guppylang_internals/definition/const.py,sha256=71QVX3xqSaC0u4bsYHPbR_0Csz1Es-P7HHGxbTZXfNI,2283
|
|
46
|
-
guppylang_internals/definition/custom.py,sha256=
|
|
47
|
-
guppylang_internals/definition/declaration.py,sha256=
|
|
46
|
+
guppylang_internals/definition/custom.py,sha256=xjVsqiav6BZGouyNYjAZiCnAKsx_Rwkxl-GIJT0ZOyE,19710
|
|
47
|
+
guppylang_internals/definition/declaration.py,sha256=uJqM8qD75koWu-jd7lyRe5bVrswtubtzb9wbouGk6is,6040
|
|
48
48
|
guppylang_internals/definition/extern.py,sha256=hEajRYaapKIfX9J7scnusQHc1e_bCxB4oUVWZ-D4c8o,2878
|
|
49
|
-
guppylang_internals/definition/function.py,sha256=
|
|
50
|
-
guppylang_internals/definition/metadata.py,sha256=
|
|
49
|
+
guppylang_internals/definition/function.py,sha256=rkfrWRNUiqJbAe_6W6a1mz1JZpNqaJvmClbmZtdvDqo,11887
|
|
50
|
+
guppylang_internals/definition/metadata.py,sha256=10tEBVNj5ONCsfdv4-hGBp0wzYN2gxYM-EXtMqO9bL4,3041
|
|
51
51
|
guppylang_internals/definition/overloaded.py,sha256=jwrzaL_P1fYW9TTL-gnPAe0gHLN2kDPbG1-muKT0u1Q,5613
|
|
52
52
|
guppylang_internals/definition/parameter.py,sha256=l60l-yO34gpeuKZ5D3ru8CS8wnQGuoAgqIUP1CrfOF8,2789
|
|
53
|
-
guppylang_internals/definition/pytket_circuits.py,sha256=
|
|
53
|
+
guppylang_internals/definition/pytket_circuits.py,sha256=YfQDdZrUPluO0zg_12Egb4KpzC3QBcKCIcVZGJEQj94,16198
|
|
54
54
|
guppylang_internals/definition/struct.py,sha256=Jed5kcoc57toQr4f7zeB7mr6fSDP1Q2KRnmGJvbVXF4,15572
|
|
55
55
|
guppylang_internals/definition/traced.py,sha256=hMHnrLKdbMvmmzmcJRvOCR-WiPHJ3x5ji0am436HNTQ,5592
|
|
56
56
|
guppylang_internals/definition/ty.py,sha256=5Jt7twY8v1cE7noZ_RYfo0X55KYV6JI0itdHW9vvZs0,2085
|
|
57
|
-
guppylang_internals/definition/value.py,sha256=
|
|
58
|
-
guppylang_internals/definition/wasm.py,sha256=
|
|
57
|
+
guppylang_internals/definition/value.py,sha256=F8XNB9qsKoHAwh0VhESRnL2z4WCWg-aiub8ldQKti8E,3489
|
|
58
|
+
guppylang_internals/definition/wasm.py,sha256=3e1rDFjdf9AkYUrMukfRqn2V4S6yMw86Us_VBxFRdTs,3391
|
|
59
59
|
guppylang_internals/std/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
60
|
guppylang_internals/std/_internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
-
guppylang_internals/std/_internal/checker.py,sha256=
|
|
61
|
+
guppylang_internals/std/_internal/checker.py,sha256=eWg2bOpD3A1cpQIo2XQShioah8pSZS2vaK1fY1VhLEU,21892
|
|
62
62
|
guppylang_internals/std/_internal/compiler.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
-
guppylang_internals/std/_internal/debug.py,sha256=
|
|
63
|
+
guppylang_internals/std/_internal/debug.py,sha256=xdFC2kjI-GY5SNzsWdwH7a5MsaUWLutQ8P6odlxLNkE,3934
|
|
64
64
|
guppylang_internals/std/_internal/util.py,sha256=e_sawDuuk1YFpbEQXbpAvWMNeTlkGb4P0t6Ed0JpP9M,8305
|
|
65
65
|
guppylang_internals/std/_internal/compiler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
66
|
guppylang_internals/std/_internal/compiler/arithmetic.py,sha256=_Nf-P3GwTp-ZVLz62Hz9ModD74R41hKqutNGmp5Mn6g,4287
|
|
@@ -79,10 +79,10 @@ guppylang_internals/std/_internal/compiler/tket_bool.py,sha256=yvZRArJIVnCysdfvg
|
|
|
79
79
|
guppylang_internals/std/_internal/compiler/tket_exts.py,sha256=UP43DbvDoXetM0qIYGEbTx4h0lINf3n5GZ67VphMUp8,1514
|
|
80
80
|
guppylang_internals/std/_internal/compiler/wasm.py,sha256=1G8EzrnN3Yv12hIdv2XOg4Hq-QlvRYl7-4QbZYLYyM4,5727
|
|
81
81
|
guppylang_internals/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
|
-
guppylang_internals/tracing/builtins_mock.py,sha256=
|
|
82
|
+
guppylang_internals/tracing/builtins_mock.py,sha256=Z_aXgUpTXIyLelfEFKVjpMLWDM-am_GtAD7KMceGFhQ,2973
|
|
83
83
|
guppylang_internals/tracing/frozenlist.py,sha256=sINk-PZTw4dNThF5GK9AZxAeX5ap-g_hbqxZ79GtLAc,1823
|
|
84
84
|
guppylang_internals/tracing/function.py,sha256=K2rEey0awOxwfljGk4uezRmXode7rgOKQY1VN94wOIo,7901
|
|
85
|
-
guppylang_internals/tracing/object.py,sha256=
|
|
85
|
+
guppylang_internals/tracing/object.py,sha256=iW8oQsbO_KgNpvcaDrVA6H52tULQpmWk5De8OILSurU,20514
|
|
86
86
|
guppylang_internals/tracing/state.py,sha256=J-fG0dZh9IeB6hpLfyp5IwqS2TW0Zr8XloMmuIHWS6Q,2083
|
|
87
87
|
guppylang_internals/tracing/unpacking.py,sha256=6Df9h4pFS6mebyU3VR5DfO87Rs_QbTdSkLMNjpaM0Xc,8728
|
|
88
88
|
guppylang_internals/tracing/util.py,sha256=zzVUeY7Ax4v_ZQh7QmckYaOWsg7BRZg6-oX4VWmytDU,3054
|
|
@@ -93,13 +93,13 @@ guppylang_internals/tys/common.py,sha256=kCJDzSquUdztV5zEINE0Lxigawux9te0lmzd0Oa
|
|
|
93
93
|
guppylang_internals/tys/const.py,sha256=kl15uOriJFLUpoodb75f4dl3HYYa6OuKWA2B0vheVPY,4876
|
|
94
94
|
guppylang_internals/tys/errors.py,sha256=zg3R-R-W5D-5kAm_xEemvfs4GJ7NHLgAL_N2WToquZA,6158
|
|
95
95
|
guppylang_internals/tys/param.py,sha256=NXNDp8yrxbCkCo6oWCnjGg1ZoJ-F0leR5aUIj2eZQrc,10165
|
|
96
|
-
guppylang_internals/tys/parsing.py,sha256=
|
|
96
|
+
guppylang_internals/tys/parsing.py,sha256=5PCfIXp6MTIbdLq6t7AzR8u6gpW6KE0dOyAMkAJyZjI,16098
|
|
97
97
|
guppylang_internals/tys/printing.py,sha256=4DewINiHYMI_l_hmhDhfUYiWmfdj2s2NkKZcMC4Qu7U,5723
|
|
98
|
-
guppylang_internals/tys/qubit.py,sha256=
|
|
99
|
-
guppylang_internals/tys/subst.py,sha256=
|
|
100
|
-
guppylang_internals/tys/ty.py,sha256=
|
|
98
|
+
guppylang_internals/tys/qubit.py,sha256=dAceI0tFPNlCrV85gDq0y1p0f2fTPRhsxi-El-IZtzc,1746
|
|
99
|
+
guppylang_internals/tys/subst.py,sha256=klk9eX71soQ2OOAsZ_RxdMRbOOQ77O0QRtPSg2xEsVA,2997
|
|
100
|
+
guppylang_internals/tys/ty.py,sha256=2Ojf8yxYypXCQSrq5cVCt7EMVCfjkFIIJBEZpcqxwzU,31119
|
|
101
101
|
guppylang_internals/tys/var.py,sha256=zACXv2IvGrqjDryC6lMyZpNnDb3SBRM2SlTOyq6WJdo,1173
|
|
102
|
-
guppylang_internals-0.
|
|
103
|
-
guppylang_internals-0.
|
|
104
|
-
guppylang_internals-0.
|
|
105
|
-
guppylang_internals-0.
|
|
102
|
+
guppylang_internals-0.28.0.dist-info/METADATA,sha256=si1cmOM9yJtW5iOZuQrzsi7SOuK7dLf9jYEsNxh5_No,14865
|
|
103
|
+
guppylang_internals-0.28.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
104
|
+
guppylang_internals-0.28.0.dist-info/licenses/LICENCE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
105
|
+
guppylang_internals-0.28.0.dist-info/RECORD,,
|
|
File without changes
|
{guppylang_internals-0.27.0.dist-info → guppylang_internals-0.28.0.dist-info}/licenses/LICENCE
RENAMED
|
File without changes
|