kstd 2025.2.23.post1226__tar.gz → 2025.2.23.post1228__tar.gz

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.
Files changed (26) hide show
  1. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/PKG-INFO +1 -1
  2. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/tests/test_asyncio__gather.py +3 -3
  3. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/.github/pull_request_template.md +0 -0
  4. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/.github/workflows/ci-cd.yaml +0 -0
  5. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/.gitignore +0 -0
  6. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/.python-version +0 -0
  7. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/.vscode/extensions.json +0 -0
  8. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/.vscode/settings.json +0 -0
  9. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/LICENSE +0 -0
  10. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/README.md +0 -0
  11. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/package.json +0 -0
  12. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/pyproject.toml +0 -0
  13. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/pyrightconfig.json +0 -0
  14. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/renovate.json5 +0 -0
  15. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/ruff.toml +0 -0
  16. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/src/kstd/__init__.py +0 -0
  17. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/src/kstd/asyncio.py +0 -0
  18. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/src/kstd/either.py +0 -0
  19. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/src/kstd/strings.py +0 -0
  20. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/tests/__init__.py +0 -0
  21. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/tests/test_asyncio__awaitable_value.py +0 -0
  22. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/tests/test_asyncio__filter_async.py +0 -0
  23. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/tests/test_asyncio__run_async.py +0 -0
  24. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/tests/test_either.py +0 -0
  25. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/tests/test_strings.py +0 -0
  26. {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kstd
3
- Version: 2025.2.23.post1226
3
+ Version: 2025.2.23.post1228
4
4
  Author: Konrad Komorowski
5
5
  License: MIT License
6
6
 
@@ -45,7 +45,7 @@ async def test_gather_returns_tuple_of_results_when_all_are_successful() -> None
45
45
  assert generator.cancelled == []
46
46
 
47
47
 
48
- async def test_gather_raises_exception_group__one_exception() -> None:
48
+ async def test_gather_raises_first_exception__one_exception() -> None:
49
49
  generator = CoroutineGenerator()
50
50
 
51
51
  with pytest.raises(RuntimeError, match="second failed"):
@@ -59,7 +59,7 @@ async def test_gather_raises_exception_group__one_exception() -> None:
59
59
  assert generator.cancelled == ["third"]
60
60
 
61
61
 
62
- async def test_gather_raises_exception_group__two_exceptions() -> None:
62
+ async def test_gather_raises_first_exception__two_exceptions() -> None:
63
63
  generator = CoroutineGenerator()
64
64
 
65
65
  with pytest.raises(RuntimeError) as exc_info:
@@ -86,7 +86,7 @@ async def test_gather_iterable_returns_list_of_results_when_all_are_successful()
86
86
  assert generator.cancelled == []
87
87
 
88
88
 
89
- async def test_gather_iterable_raises_exception_group() -> None:
89
+ async def test_gather_iterable_raises_first_exception() -> None:
90
90
  generator = CoroutineGenerator()
91
91
 
92
92
  with pytest.raises(RuntimeError, match="second failed"):