Skip to content

Rename python package name to apyds. - #27

Merged
hzhangxyz merged 3 commits into
mainfrom
dev/rename-pyds-to-apyds
Nov 25, 2025
Merged

Rename python package name to apyds.#27
hzhangxyz merged 3 commits into
mainfrom
dev/rename-pyds-to-apyds

Conversation

@hzhangxyz

Copy link
Copy Markdown
Member

No description provided.

Comment thread tests/test_list.py

with pytest.raises(ValueError):
list = pyds.List(l, 100)
list = apyds.List(l, 100)
Comment thread tests/test_list.py

with pytest.raises(ValueError):
list = pyds.List(l.data(), 100)
list = apyds.List(l.data(), 100)
Comment thread tests/test_list.py
def test_create_fail() -> None:
with pytest.raises(TypeError):
list = pyds.List(100)
list = apyds.List(100)
Comment thread tests/test_item.py

with pytest.raises(ValueError):
item = pyds.Item(i, 100)
item = apyds.Item(i, 100)
Comment thread tests/test_item.py

with pytest.raises(ValueError):
item = pyds.Item(i.data(), 100)
item = apyds.Item(i.data(), 100)
Comment thread tests/test_item.py
def test_create_fail() -> None:
with pytest.raises(TypeError):
item = pyds.Item(100)
item = apyds.Item(100)
Comment thread tests/test_rule.py

with pytest.raises(ValueError):
rule = pyds.Rule(r, 100)
rule = apyds.Rule(r, 100)
Comment thread tests/test_rule.py

with pytest.raises(ValueError):
rule = pyds.Rule(r.data(), 100)
rule = apyds.Rule(r.data(), 100)
Comment thread tests/test_rule.py
def test_create_fail() -> None:
with pytest.raises(TypeError):
rule = pyds.Rule(100)
rule = apyds.Rule(100)
Comment thread tests/test_string.py

with pytest.raises(ValueError):
string = pyds.String(s, 100)
string = apyds.String(s, 100)
@hzhangxyz
hzhangxyz merged commit e57eb5e into main Nov 25, 2025
51 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant