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.
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/PKG-INFO +1 -1
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/tests/test_asyncio__gather.py +3 -3
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/.github/pull_request_template.md +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/.github/workflows/ci-cd.yaml +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/.gitignore +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/.python-version +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/.vscode/extensions.json +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/.vscode/settings.json +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/LICENSE +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/README.md +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/package.json +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/pyproject.toml +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/pyrightconfig.json +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/renovate.json5 +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/ruff.toml +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/src/kstd/__init__.py +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/src/kstd/asyncio.py +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/src/kstd/either.py +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/src/kstd/strings.py +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/tests/__init__.py +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/tests/test_asyncio__awaitable_value.py +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/tests/test_asyncio__filter_async.py +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/tests/test_asyncio__run_async.py +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/tests/test_either.py +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/tests/test_strings.py +0 -0
- {kstd-2025.2.23.post1226 → kstd-2025.2.23.post1228}/uv.lock +0 -0
|
@@ -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
|
|
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
|
|
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
|
|
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"):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|