Uh oh!
There was an error while loading. Please reload this page.
gh-128307: support eager_start kwarg in create_eager_task_factory, and pass kwargs from asyncio.create_task and TaskGroup.create_task - #128306
Conversation
c809133 to
2f101b3CompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
asvetlov
commented
Dec 28, 2024
|
graingert
commented
Dec 28, 2024
yup, it's in I just forgot to add it to the news |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
0699ae2 to
7bce401CompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
How would the loop even know what type task factory was installed so as to raise? |
gvanrossum
commented
May 4, 2025
Assuming the segfault will be fixed, let's just work through adding eager_start to all create_task methods. (We can test with the crux of that fix patched in.) @graingert Do you need help writing any code? One thing I'd like to ensure is that at least It might be possible to come up with a protocol whereby a task factory communicates which |
I strongly disagree with raising an exception in the currently supported loop.create_task(eager_start=True) case. |
mikeshardmind
commented
May 5, 2025
So what would you have happen if the task factory doesn't support eager starts? This API is a breaking change if lazy task factories now must handle this. |
graingert
commented
May 5, 2025
Ah I see, yes then an exception in that case is the current behaviour |
Uh oh!
There was an error while loading. Please reload this page.
gvanrossum-ms
commented
May 5, 2025
But by looking at more of the code I just learned that the eagerness is purely implemented by passing There's one bit of behavior that's changed -- not sure if we care (the docs do not mention it): if you explicitly use |
gvanrossum-ms
commented
May 5, 2025
I know why the tests fail, will fix in a moment. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
gvanrossum
left a comment
There was a problem hiding this comment.
@graingert Are you okay if I merge this once the tests pass?
graingert
left a comment
There was a problem hiding this comment.
Just giving everything a final look over
graingert
commented
May 5, 2025
LGTM! Thanks! |
gvanrossum
commented
May 5, 2025
W00t! Goodnight everyone. Welcome to beta 1. |
bedevere-bot
commented
May 5, 2025
|
dimaqq
commented
May 6, 2025
The |
graingert
commented
May 6, 2025
It's already fixed, here's the issue: #133419 |
| def create_task(coro, *, name=None, context=None): | ||
| def create_task(coro, **kwargs): |
There was a problem hiding this comment.
From the Python user perspective, I don't like this change.
It obscures the allowed kwargs and makes it harder for IDEs to provide suggestions.
I suppose we'd be relying on https://github.com/python/typeshed/blob/main/stdlib/asyncio/tasks.pyi from now on?
There was a problem hiding this comment.
I agree it would be nice if we could avoid the **kwargs, but it make the implementation more complex at every level of indirection (asyncio.create_task -> loop.create_task -> Task, and also TaskGroup.create_task -> loop.create_task -> Task).
IDEs should be using typeshed anyway. (And we should update tasks.pyi to have a case for 3.14 that adds eager_startand**kwargs. In fact this should be done to all the create_task definitions found in typeshed's asyncio definitions.
…ory and various create_task functions (python#128306) Some create_task() functions were changed from `name=None, context=None` to `**kwargs`. Co-authored-by: Guido van Rossum <gvanrossum@gmail.com>
Uh oh!
There was an error while loading. Please reload this page.