islpy 2025.2__cp313-cp313-musllinux_1_2_x86_64.whl → 2025.2.1__cp313-cp313-musllinux_1_2_x86_64.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.
- islpy/_isl.cpython-313-x86_64-linux-musl.so +0 -0
- islpy/_isl.pyi +81 -79
- islpy/_monkeypatch.py +82 -0
- {islpy-2025.2.dist-info → islpy-2025.2.1.dist-info}/METADATA +1 -1
- islpy-2025.2.1.dist-info/RECORD +9 -0
- islpy-2025.2.dist-info/RECORD +0 -9
- {islpy-2025.2.dist-info → islpy-2025.2.1.dist-info}/WHEEL +0 -0
Binary file
|
islpy/_isl.pyi
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
from typing_extensions import Self
|
1
2
|
from collections.abc import Callable
|
2
3
|
import enum
|
3
4
|
from typing import overload
|
@@ -1489,83 +1490,83 @@ class IdToAstExpr:
|
|
1489
1490
|
pass
|
1490
1491
|
|
1491
1492
|
class Printer:
|
1492
|
-
def print_id_list(self, list: IdList) ->
|
1493
|
+
def print_id_list(self, list: IdList) -> Self: ...
|
1493
1494
|
|
1494
|
-
def print_id(self, id: Id) ->
|
1495
|
+
def print_id(self, id: Id) -> Self: ...
|
1495
1496
|
|
1496
|
-
def print_multi_id(self, mi: MultiId) ->
|
1497
|
+
def print_multi_id(self, mi: MultiId) -> Self: ...
|
1497
1498
|
|
1498
|
-
def print_space(self, space: Space) ->
|
1499
|
+
def print_space(self, space: Space) -> Self: ...
|
1499
1500
|
|
1500
|
-
def print_basic_set(self, bset: BasicSet) ->
|
1501
|
+
def print_basic_set(self, bset: BasicSet) -> Self: ...
|
1501
1502
|
|
1502
|
-
def print_set(self, map: Set | BasicSet) ->
|
1503
|
+
def print_set(self, map: Set | BasicSet) -> Self: ...
|
1503
1504
|
|
1504
|
-
def print_basic_map(self, bmap: BasicMap) ->
|
1505
|
+
def print_basic_map(self, bmap: BasicMap) -> Self: ...
|
1505
1506
|
|
1506
|
-
def print_map(self, map: Map | BasicMap) ->
|
1507
|
+
def print_map(self, map: Map | BasicMap) -> Self: ...
|
1507
1508
|
|
1508
|
-
def print_basic_map_list(self, list: BasicMapList) ->
|
1509
|
+
def print_basic_map_list(self, list: BasicMapList) -> Self: ...
|
1509
1510
|
|
1510
|
-
def print_map_list(self, list: MapList) ->
|
1511
|
+
def print_map_list(self, list: MapList) -> Self: ...
|
1511
1512
|
|
1512
|
-
def print_basic_set_list(self, list: BasicSetList) ->
|
1513
|
+
def print_basic_set_list(self, list: BasicSetList) -> Self: ...
|
1513
1514
|
|
1514
|
-
def print_set_list(self, list: SetList) ->
|
1515
|
+
def print_set_list(self, list: SetList) -> Self: ...
|
1515
1516
|
|
1516
|
-
def print_local_space(self, ls: LocalSpace | Space) ->
|
1517
|
+
def print_local_space(self, ls: LocalSpace | Space) -> Self: ...
|
1517
1518
|
|
1518
|
-
def print_aff(self, aff: Aff) ->
|
1519
|
+
def print_aff(self, aff: Aff) -> Self: ...
|
1519
1520
|
|
1520
|
-
def print_pw_aff(self, pwaff: PwAff | Aff) ->
|
1521
|
+
def print_pw_aff(self, pwaff: PwAff | Aff) -> Self: ...
|
1521
1522
|
|
1522
|
-
def print_multi_aff(self, maff: MultiAff) ->
|
1523
|
+
def print_multi_aff(self, maff: MultiAff) -> Self: ...
|
1523
1524
|
|
1524
|
-
def print_pw_multi_aff(self, pma: PwMultiAff | MultiAff) ->
|
1525
|
+
def print_pw_multi_aff(self, pma: PwMultiAff | MultiAff) -> Self: ...
|
1525
1526
|
|
1526
|
-
def print_union_pw_multi_aff(self, upma: UnionPwMultiAff | MultiAff | PwMultiAff) ->
|
1527
|
+
def print_union_pw_multi_aff(self, upma: UnionPwMultiAff | MultiAff | PwMultiAff) -> Self: ...
|
1527
1528
|
|
1528
|
-
def print_multi_pw_aff(self, mpa: MultiPwAff) ->
|
1529
|
+
def print_multi_pw_aff(self, mpa: MultiPwAff) -> Self: ...
|
1529
1530
|
|
1530
|
-
def print_union_pw_aff(self, upa: UnionPwAff | Aff | PwAff) ->
|
1531
|
+
def print_union_pw_aff(self, upa: UnionPwAff | Aff | PwAff) -> Self: ...
|
1531
1532
|
|
1532
|
-
def print_multi_union_pw_aff(self, mupa: MultiUnionPwAff) ->
|
1533
|
+
def print_multi_union_pw_aff(self, mupa: MultiUnionPwAff) -> Self: ...
|
1533
1534
|
|
1534
|
-
def print_aff_list(self, list: AffList) ->
|
1535
|
+
def print_aff_list(self, list: AffList) -> Self: ...
|
1535
1536
|
|
1536
|
-
def print_pw_aff_list(self, list: PwAffList) ->
|
1537
|
+
def print_pw_aff_list(self, list: PwAffList) -> Self: ...
|
1537
1538
|
|
1538
|
-
def print_pw_multi_aff_list(self, list: PwMultiAffList) ->
|
1539
|
+
def print_pw_multi_aff_list(self, list: PwMultiAffList) -> Self: ...
|
1539
1540
|
|
1540
|
-
def print_union_pw_aff_list(self, list: UnionPwAffList) ->
|
1541
|
+
def print_union_pw_aff_list(self, list: UnionPwAffList) -> Self: ...
|
1541
1542
|
|
1542
|
-
def print_union_pw_multi_aff_list(self, list: UnionPwMultiAffList) ->
|
1543
|
+
def print_union_pw_multi_aff_list(self, list: UnionPwMultiAffList) -> Self: ...
|
1543
1544
|
|
1544
|
-
def print_qpolynomial(self, qp: QPolynomial) ->
|
1545
|
+
def print_qpolynomial(self, qp: QPolynomial) -> Self: ...
|
1545
1546
|
|
1546
|
-
def print_pw_qpolynomial(self, pwqp: PwQPolynomial) ->
|
1547
|
+
def print_pw_qpolynomial(self, pwqp: PwQPolynomial) -> Self: ...
|
1547
1548
|
|
1548
|
-
def print_qpolynomial_fold(self, fold: QPolynomialFold) ->
|
1549
|
+
def print_qpolynomial_fold(self, fold: QPolynomialFold) -> Self: ...
|
1549
1550
|
|
1550
|
-
def print_pw_qpolynomial_fold(self, pwf: PwQPolynomialFold) ->
|
1551
|
+
def print_pw_qpolynomial_fold(self, pwf: PwQPolynomialFold) -> Self: ...
|
1551
1552
|
|
1552
|
-
def print_union_pw_qpolynomial(self, upwqp: UnionPwQPolynomial) ->
|
1553
|
+
def print_union_pw_qpolynomial(self, upwqp: UnionPwQPolynomial) -> Self: ...
|
1553
1554
|
|
1554
|
-
def print_union_pw_qpolynomial_fold(self, upwf: UnionPwQPolynomialFold) ->
|
1555
|
+
def print_union_pw_qpolynomial_fold(self, upwf: UnionPwQPolynomialFold) -> Self: ...
|
1555
1556
|
|
1556
|
-
def print_qpolynomial_list(self, list: QPolynomialList) ->
|
1557
|
+
def print_qpolynomial_list(self, list: QPolynomialList) -> Self: ...
|
1557
1558
|
|
1558
|
-
def print_pw_qpolynomial_list(self, list: PwQPolynomialList) ->
|
1559
|
+
def print_pw_qpolynomial_list(self, list: PwQPolynomialList) -> Self: ...
|
1559
1560
|
|
1560
|
-
def print_pw_qpolynomial_fold_list(self, list: PwQPolynomialFoldList) ->
|
1561
|
+
def print_pw_qpolynomial_fold_list(self, list: PwQPolynomialFoldList) -> Self: ...
|
1561
1562
|
|
1562
|
-
def print_union_map(self, umap: UnionMap | BasicMap | Map) ->
|
1563
|
+
def print_union_map(self, umap: UnionMap | BasicMap | Map) -> Self: ...
|
1563
1564
|
|
1564
|
-
def print_union_map_list(self, list: UnionMapList) ->
|
1565
|
+
def print_union_map_list(self, list: UnionMapList) -> Self: ...
|
1565
1566
|
|
1566
|
-
def print_union_set(self, uset: UnionSet | BasicSet | Set) ->
|
1567
|
+
def print_union_set(self, uset: UnionSet | BasicSet | Set) -> Self: ...
|
1567
1568
|
|
1568
|
-
def print_union_set_list(self, list: UnionSetList) ->
|
1569
|
+
def print_union_set_list(self, list: UnionSetList) -> Self: ...
|
1569
1570
|
|
1570
1571
|
@staticmethod
|
1571
1572
|
def to_str(ctx: Context) -> Printer: ...
|
@@ -1574,87 +1575,87 @@ class Printer:
|
|
1574
1575
|
|
1575
1576
|
def get_str(self) -> str: ...
|
1576
1577
|
|
1577
|
-
def set_indent(self, indent: int) ->
|
1578
|
+
def set_indent(self, indent: int) -> Self: ...
|
1578
1579
|
|
1579
|
-
def indent(self, indent: int) ->
|
1580
|
+
def indent(self, indent: int) -> Self: ...
|
1580
1581
|
|
1581
|
-
def set_output_format(self, output_format: int) ->
|
1582
|
+
def set_output_format(self, output_format: int) -> Self: ...
|
1582
1583
|
|
1583
1584
|
def get_output_format(self) -> int: ...
|
1584
1585
|
|
1585
|
-
def set_yaml_style(self, yaml_style: int) ->
|
1586
|
+
def set_yaml_style(self, yaml_style: int) -> Self: ...
|
1586
1587
|
|
1587
1588
|
def get_yaml_style(self) -> int: ...
|
1588
1589
|
|
1589
|
-
def set_indent_prefix(self, prefix: str) ->
|
1590
|
+
def set_indent_prefix(self, prefix: str) -> Self: ...
|
1590
1591
|
|
1591
|
-
def set_prefix(self, prefix: str) ->
|
1592
|
+
def set_prefix(self, prefix: str) -> Self: ...
|
1592
1593
|
|
1593
|
-
def set_suffix(self, suffix: str) ->
|
1594
|
+
def set_suffix(self, suffix: str) -> Self: ...
|
1594
1595
|
|
1595
|
-
def set_isl_int_width(self, width: int) ->
|
1596
|
+
def set_isl_int_width(self, width: int) -> Self: ...
|
1596
1597
|
|
1597
1598
|
def has_note(self, id: Id) -> bool: ...
|
1598
1599
|
|
1599
1600
|
def get_note(self, id: Id) -> Id: ...
|
1600
1601
|
|
1601
|
-
def set_note(self, id: Id, note: Id) ->
|
1602
|
+
def set_note(self, id: Id, note: Id) -> Self: ...
|
1602
1603
|
|
1603
|
-
def start_line(self) ->
|
1604
|
+
def start_line(self) -> Self: ...
|
1604
1605
|
|
1605
|
-
def end_line(self) ->
|
1606
|
+
def end_line(self) -> Self: ...
|
1606
1607
|
|
1607
|
-
def print_double(self, d: int) ->
|
1608
|
+
def print_double(self, d: int) -> Self: ...
|
1608
1609
|
|
1609
|
-
def print_int(self, i: int) ->
|
1610
|
+
def print_int(self, i: int) -> Self: ...
|
1610
1611
|
|
1611
|
-
def print_str(self, s: str) ->
|
1612
|
+
def print_str(self, s: str) -> Self: ...
|
1612
1613
|
|
1613
|
-
def yaml_start_mapping(self) ->
|
1614
|
+
def yaml_start_mapping(self) -> Self: ...
|
1614
1615
|
|
1615
|
-
def yaml_end_mapping(self) ->
|
1616
|
+
def yaml_end_mapping(self) -> Self: ...
|
1616
1617
|
|
1617
|
-
def yaml_start_sequence(self) ->
|
1618
|
+
def yaml_start_sequence(self) -> Self: ...
|
1618
1619
|
|
1619
|
-
def yaml_end_sequence(self) ->
|
1620
|
+
def yaml_end_sequence(self) -> Self: ...
|
1620
1621
|
|
1621
|
-
def yaml_next(self) ->
|
1622
|
+
def yaml_next(self) -> Self: ...
|
1622
1623
|
|
1623
|
-
def flush(self) ->
|
1624
|
+
def flush(self) -> Self: ...
|
1624
1625
|
|
1625
|
-
def print_point(self, pnt: Point) ->
|
1626
|
+
def print_point(self, pnt: Point) -> Self: ...
|
1626
1627
|
|
1627
|
-
def print_constraint_list(self, list: ConstraintList) ->
|
1628
|
+
def print_constraint_list(self, list: ConstraintList) -> Self: ...
|
1628
1629
|
|
1629
|
-
def print_constraint(self, c: Constraint) ->
|
1630
|
+
def print_constraint(self, c: Constraint) -> Self: ...
|
1630
1631
|
|
1631
|
-
def print_val(self, v: Val | int) ->
|
1632
|
+
def print_val(self, v: Val | int) -> Self: ...
|
1632
1633
|
|
1633
|
-
def print_multi_val(self, mv: MultiVal) ->
|
1634
|
+
def print_multi_val(self, mv: MultiVal) -> Self: ...
|
1634
1635
|
|
1635
|
-
def print_val_list(self, list: ValList) ->
|
1636
|
+
def print_val_list(self, list: ValList) -> Self: ...
|
1636
1637
|
|
1637
|
-
def print_vec(self, vec: Vec) ->
|
1638
|
+
def print_vec(self, vec: Vec) -> Self: ...
|
1638
1639
|
|
1639
|
-
def print_schedule_constraints(self, sc: ScheduleConstraints) ->
|
1640
|
+
def print_schedule_constraints(self, sc: ScheduleConstraints) -> Self: ...
|
1640
1641
|
|
1641
|
-
def print_schedule(self, schedule: Schedule) ->
|
1642
|
+
def print_schedule(self, schedule: Schedule) -> Self: ...
|
1642
1643
|
|
1643
|
-
def print_schedule_node(self, node: ScheduleNode) ->
|
1644
|
+
def print_schedule_node(self, node: ScheduleNode) -> Self: ...
|
1644
1645
|
|
1645
|
-
def print_union_access_info(self, access: UnionAccessInfo) ->
|
1646
|
+
def print_union_access_info(self, access: UnionAccessInfo) -> Self: ...
|
1646
1647
|
|
1647
|
-
def print_union_flow(self, flow: UnionFlow) ->
|
1648
|
+
def print_union_flow(self, flow: UnionFlow) -> Self: ...
|
1648
1649
|
|
1649
|
-
def print_ast_expr(self, expr: AstExpr) ->
|
1650
|
+
def print_ast_expr(self, expr: AstExpr) -> Self: ...
|
1650
1651
|
|
1651
|
-
def print_ast_node(self, node: AstNode) ->
|
1652
|
+
def print_ast_node(self, node: AstNode) -> Self: ...
|
1652
1653
|
|
1653
|
-
def ast_op_type_set_print_name(self, type: ast_expr_op_type, name: str) ->
|
1654
|
+
def ast_op_type_set_print_name(self, type: ast_expr_op_type, name: str) -> Self: ...
|
1654
1655
|
|
1655
|
-
def print_ast_expr_list(self, list: AstExprList) ->
|
1656
|
+
def print_ast_expr_list(self, list: AstExprList) -> Self: ...
|
1656
1657
|
|
1657
|
-
def print_ast_node_list(self, list: AstNodeList) ->
|
1658
|
+
def print_ast_node_list(self, list: AstNodeList) -> Self: ...
|
1658
1659
|
|
1659
1660
|
class Val:
|
1660
1661
|
@overload
|
@@ -2904,9 +2905,6 @@ class PwAff:
|
|
2904
2905
|
__repr__ = islpy._monkeypatch.generic_repr
|
2905
2906
|
|
2906
2907
|
class UnionPwAff:
|
2907
|
-
@overload
|
2908
|
-
def __init__(self, arg: Aff, /) -> None: ...
|
2909
|
-
|
2910
2908
|
@overload
|
2911
2909
|
def __init__(self, arg: PwAff, /) -> None: ...
|
2912
2910
|
|
@@ -4574,6 +4572,8 @@ class Constraint:
|
|
4574
4572
|
class Space:
|
4575
4573
|
def __init__(self, s: str, context: Context | None = None) -> None: ...
|
4576
4574
|
|
4575
|
+
def to_local_space(self) -> LocalSpace: ...
|
4576
|
+
|
4577
4577
|
def multi_id(self, list: IdList) -> MultiId: ...
|
4578
4578
|
|
4579
4579
|
def get_ctx(self) -> Context: ...
|
@@ -5504,6 +5504,8 @@ class BasicSet:
|
|
5504
5504
|
class BasicMap:
|
5505
5505
|
def __init__(self, s: str, context: Context | None = None) -> None: ...
|
5506
5506
|
|
5507
|
+
def to_map(self) -> Map: ...
|
5508
|
+
|
5507
5509
|
def total_dim(self) -> int: ...
|
5508
5510
|
|
5509
5511
|
def dim(self, type: dim_type) -> int: ...
|
islpy/_monkeypatch.py
CHANGED
@@ -1,14 +1,21 @@
|
|
1
|
+
import os
|
2
|
+
import re
|
1
3
|
from collections.abc import Callable, Collection, Iterable, Mapping, Sequence
|
4
|
+
from functools import update_wrapper
|
5
|
+
from sys import intern
|
2
6
|
from typing import (
|
3
7
|
TYPE_CHECKING,
|
4
8
|
Any,
|
5
9
|
ClassVar,
|
10
|
+
Concatenate,
|
6
11
|
Literal,
|
12
|
+
ParamSpec,
|
7
13
|
Protocol,
|
8
14
|
TypeAlias,
|
9
15
|
TypeVar,
|
10
16
|
cast,
|
11
17
|
)
|
18
|
+
from warnings import warn
|
12
19
|
|
13
20
|
|
14
21
|
if TYPE_CHECKING:
|
@@ -1013,3 +1020,78 @@ for cls in ALL_CLASSES:
|
|
1013
1020
|
|
1014
1021
|
|
1015
1022
|
_add_functionality()
|
1023
|
+
|
1024
|
+
|
1025
|
+
P = ParamSpec("P")
|
1026
|
+
ResultT = TypeVar("ResultT")
|
1027
|
+
|
1028
|
+
|
1029
|
+
_DOWNCAST_RE = re.compile(
|
1030
|
+
r"Downcast from :class:`([A-Za-z]+)` to :class:`([A-Za-z]+)`.")
|
1031
|
+
|
1032
|
+
|
1033
|
+
_TO_METHODS = {
|
1034
|
+
"PwAff": "to_pw_aff",
|
1035
|
+
"PwMultiAff": "to_pw_multi_aff",
|
1036
|
+
"UnionPwAff": "to_union_pw_aff",
|
1037
|
+
"UnionPwMultiAff": "to_union_pw_multi_aff",
|
1038
|
+
"LocalSpace": "to_local_space",
|
1039
|
+
"Set": "to_set",
|
1040
|
+
"UnionSet": "to_union_set",
|
1041
|
+
"Map": "to_map",
|
1042
|
+
"UnionMap": "to_union_map",
|
1043
|
+
}
|
1044
|
+
|
1045
|
+
|
1046
|
+
def _depr_downcast_wrapper(
|
1047
|
+
f: Callable[Concatenate[object, P], ResultT],
|
1048
|
+
) -> Callable[Concatenate[object, P], ResultT]:
|
1049
|
+
doc = f.__doc__
|
1050
|
+
assert doc is not None
|
1051
|
+
m = _DOWNCAST_RE.search(doc)
|
1052
|
+
assert m, doc
|
1053
|
+
basic_cls_name = intern(m.group(1))
|
1054
|
+
tgt_cls_name = m.group(2)
|
1055
|
+
|
1056
|
+
tgt_cls = cast("type", getattr(_isl, tgt_cls_name))
|
1057
|
+
is_overload = "Overloaded function" in doc
|
1058
|
+
msg = (f"{basic_cls_name}.{f.__name__} "
|
1059
|
+
f"with implicit conversion of self to {tgt_cls_name} is deprecated "
|
1060
|
+
"and will stop working in 2026. "
|
1061
|
+
f"Explicitly convert to {tgt_cls_name}, "
|
1062
|
+
f"using .{_TO_METHODS[tgt_cls_name]}().")
|
1063
|
+
|
1064
|
+
if is_overload:
|
1065
|
+
def wrapper(self: object, *args: P.args, **kwargs: P.kwargs) -> ResultT:
|
1066
|
+
# "Try to" detect bad invocations of, e.g., Set.union, which is
|
1067
|
+
# an overload of normal union and UnionSet.union.
|
1068
|
+
if (
|
1069
|
+
any(isinstance(arg, tgt_cls) for arg in args)
|
1070
|
+
or
|
1071
|
+
any(isinstance(arg, tgt_cls) for arg in kwargs.values())
|
1072
|
+
):
|
1073
|
+
warn(msg, DeprecationWarning, stacklevel=2)
|
1074
|
+
|
1075
|
+
return f(self, *args, **kwargs)
|
1076
|
+
else:
|
1077
|
+
def wrapper(self: object, *args: P.args, **kwargs: P.kwargs) -> ResultT:
|
1078
|
+
warn(msg, DeprecationWarning, stacklevel=2)
|
1079
|
+
|
1080
|
+
return f(self, *args, **kwargs)
|
1081
|
+
update_wrapper(wrapper, f)
|
1082
|
+
return wrapper
|
1083
|
+
|
1084
|
+
|
1085
|
+
def _monkeypatch_self_downcast_deprecation():
|
1086
|
+
for cls in ALL_CLASSES:
|
1087
|
+
for attr_name in dir(cls):
|
1088
|
+
val = cast("object", getattr(cls, attr_name))
|
1089
|
+
doc = getattr(val, "__doc__", None)
|
1090
|
+
if doc and "\nDowncast from " in doc:
|
1091
|
+
setattr(cls, attr_name, _depr_downcast_wrapper(
|
1092
|
+
cast("Callable", val), # pyright: ignore[reportMissingTypeArgument]
|
1093
|
+
))
|
1094
|
+
|
1095
|
+
|
1096
|
+
if not os.environ.get("ISLPY_NO_DOWNCAST_DEPRECATION", None):
|
1097
|
+
_monkeypatch_self_downcast_deprecation()
|
@@ -0,0 +1,9 @@
|
|
1
|
+
islpy/__init__.py,sha256=6In7YFiBLKNNVIGkpKMiB1H_-H2OQ5ovlqJ_Tz0nAvA,13073
|
2
|
+
islpy/_isl.cpython-313-x86_64-linux-musl.so,sha256=ff-PSYhPsNvhA70JYw2eSGbZTM2ZSQCxt6x-OWOKVMU,10220080
|
3
|
+
islpy/_isl.pyi,sha256=dAYJ9hZ0HrpMnUHdruE6cOvKU_Px2kZ7qr6YFDZ-Z-0,260082
|
4
|
+
islpy/_monkeypatch.py,sha256=NrSQHBRxIVzSuYa2qR_oSnxRoJxVbu-l_Sv1AZcvE0Q,31242
|
5
|
+
islpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
+
islpy/version.py,sha256=9KVEg7OX9uCaA6ElUMeiAh-zDrxsy3u2H6VQm_-LTUE,301
|
7
|
+
islpy-2025.2.1.dist-info/METADATA,sha256=rKg9uyDgpaAp2mbvRv2YzFS9seQzhA1jjw75gcTmQvg,2966
|
8
|
+
islpy-2025.2.1.dist-info/WHEEL,sha256=qUiawu0oEmYutMtNzMyd2sGhnj2m-RB23JYQfpAq4g4,117
|
9
|
+
islpy-2025.2.1.dist-info/RECORD,,
|
islpy-2025.2.dist-info/RECORD
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
islpy/__init__.py,sha256=6In7YFiBLKNNVIGkpKMiB1H_-H2OQ5ovlqJ_Tz0nAvA,13073
|
2
|
-
islpy/_isl.cpython-313-x86_64-linux-musl.so,sha256=sy16cKcouc4C91_WQlWFIBdoZLVh85Q1lDcIhS1uKRc,10220080
|
3
|
-
islpy/_isl.pyi,sha256=rmWMkaV2DBUBqDl6c4hdyJR2QE7uOfS2yo2t4SOApSc,260256
|
4
|
-
islpy/_monkeypatch.py,sha256=iFDDVUTNZhf98TcprqaW7UMXtx-fMm9sP-A3jWF32OA,28592
|
5
|
-
islpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
islpy/version.py,sha256=9KVEg7OX9uCaA6ElUMeiAh-zDrxsy3u2H6VQm_-LTUE,301
|
7
|
-
islpy-2025.2.dist-info/METADATA,sha256=MP7D5-bXwNkMnh82YAQwyKnxuYie87BD6azadm508mA,2964
|
8
|
-
islpy-2025.2.dist-info/WHEEL,sha256=qUiawu0oEmYutMtNzMyd2sGhnj2m-RB23JYQfpAq4g4,117
|
9
|
-
islpy-2025.2.dist-info/RECORD,,
|
File without changes
|