Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
4c96188
feat: rewrite staggered_race to be race safe
bdraco Sep 30, 2024
67743c3
feat: rewrite staggered_race to be race safe
bdraco Sep 30, 2024
f13db9f
wip
bdraco Sep 30, 2024
1056e9e
wip
bdraco Sep 30, 2024
47c4b1d
wip
bdraco Sep 30, 2024
5338f38
wip
bdraco Sep 30, 2024
9d0838c
tweak
bdraco Sep 30, 2024
e2d38d7
comments
bdraco Sep 30, 2024
41c4959
comments
bdraco Sep 30, 2024
6c87e32
comments
bdraco Sep 30, 2024
7e49064
cleanup
bdraco Sep 30, 2024
11bf906
cleanup
bdraco Sep 30, 2024
26a6b6d
fix: py38
bdraco Sep 30, 2024
c19d61a
fix: py38
bdraco Sep 30, 2024
36fc530
fix: py38
bdraco Sep 30, 2024
4623300
fix: py38
bdraco Sep 30, 2024
e410565
fix: tests
bdraco Sep 30, 2024
013b951
tweak
bdraco Sep 30, 2024
aa55328
fix: coverage
bdraco Sep 30, 2024
18e2912
fix: coverage
bdraco Sep 30, 2024
cbe6f7c
fix: add eager task factory tests
bdraco Sep 30, 2024
df0171d
fix: add eager task factory tests
bdraco Sep 30, 2024
6a7fd91
naming
bdraco Sep 30, 2024
7a4b659
fix: lint
bdraco Sep 30, 2024
44a6e8b
comments
bdraco Sep 30, 2024
42e2b99
rename tests
bdraco Sep 30, 2024
7c66687
rename tests
bdraco Sep 30, 2024
cf347f1
needs a guard
bdraco Sep 30, 2024
580b0cd
tweak
bdraco Sep 30, 2024
5d3fd43
tweak
bdraco Sep 30, 2024
ec88d1e
preen
bdraco Sep 30, 2024
450f183
cleanup
bdraco Sep 30, 2024
86b768d
cleanup
bdraco Sep 30, 2024
d3c2ecd
cleanup
bdraco Sep 30, 2024
4dd8a72
avoid consuming iterable
bdraco Sep 30, 2024
88de10f
avoid consuming iterable
bdraco Sep 30, 2024
1569c42
avoid consuming iterable
bdraco Sep 30, 2024
7d3bc9e
avoid consuming iterable
bdraco Sep 30, 2024
c7bc061
avoid consuming iterable
bdraco Sep 30, 2024
f7ea011
avoid consuming iterable
bdraco Sep 30, 2024
591ca0d
avoid consuming iterable
bdraco Sep 30, 2024
a3fa3ef
avoid consuming iterable
bdraco Sep 30, 2024
9e5edc4
avoid consuming iterable
bdraco Sep 30, 2024
b71b000
avoid consuming iterable
bdraco Sep 30, 2024
c302bf8
comments
bdraco Sep 30, 2024
9f1e400
comments
bdraco Sep 30, 2024
604eb5e
comments
bdraco Sep 30, 2024
964cf86
comments
bdraco Sep 30, 2024
faf5353
comments
bdraco Sep 30, 2024
39746b6
reduce
bdraco Sep 30, 2024
c4b7053
Revert "reduce"
bdraco Sep 30, 2024
b7e69ce
reduce
bdraco Sep 30, 2024
b7745fd
Merge branch 'main' into stag
bdraco Sep 30, 2024
29c4e46
chore(pre-commit.ci): auto fixes
pre-commit-ci[bot] Sep 30, 2024
28d9c91
more coverage
bdraco Sep 30, 2024
31a5a77
Merge remote-tracking branch 'origin/stag' into stag
bdraco Sep 30, 2024
c59f344
chore: add tests for multiple winners
bdraco Sep 30, 2024
c3e7170
chore: add tests for multiple winners
bdraco Sep 30, 2024
9fd0030
Merge branch 'main' into stag
bdraco Sep 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
comments
  • Loading branch information
bdraco committed Sep 30, 2024
commit 604eb5e18e14bb416b8c42455e99af92499f3135
2 changes: 1 addition & 1 deletion src/aiohappyeyeballs/_staggered.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ async def run_one_coro(
raise
except BaseException as e:
exceptions[this_index] = e
_set_result(start_next)
_set_result(start_next) # Kickstart the next coroutine
return None

return result, this_index
Expand Down