Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In to_thread_run_sync(), add abandon_on_cancel= as an alias for the cancellable= flag #2841

Merged
merged 9 commits into from Nov 2, 2023

Conversation

richardsheridan
Copy link
Contributor

As suggested in #2392 (comment)

@codecov
Copy link

codecov bot commented Oct 28, 2023

Codecov Report

Merging #2841 (0c6e63a) into master (3b6b167) will increase coverage by 0.00%.
The diff coverage is 100.00%.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #2841   +/-   ##
=======================================
  Coverage   99.18%   99.18%           
=======================================
  Files         115      115           
  Lines       17596    17612   +16     
  Branches     3143     3149    +6     
=======================================
+ Hits        17453    17469   +16     
  Misses         99       99           
  Partials       44       44           
Files Coverage Δ
trio/_socket.py 100.00% <ø> (ø)
trio/_subprocess_platform/waitid.py 70.73% <ø> (ø)
trio/_tests/test_threads.py 100.00% <100.00%> (ø)
trio/_threads.py 100.00% <100.00%> (ø)
trio/_wait_for_object.py 100.00% <ø> (ø)

Copy link
Contributor

@TeamSpen210 TeamSpen210 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's a much more understandable name. It's not necessary, but we could use @overload to have type checkers prevent you from passing both parameters:

@overload
async def to_thread_run_sync(
    sync_fn: Callable[..., RetT],
    *args: object,
    thread_name: str | None = None,
    abandon_on_cancel: bool,
    limiter: CapacityLimiter | None = None,
) -> RetT: ...
@overload
async def to_thread_run_sync(
    sync_fn: Callable[..., RetT],
    *args: object,
    thread_name: str | None = None,
    cancellable: bool = False,
    limiter: CapacityLimiter | None = None,
) -> RetT: ...

Copy link
Member

@jakkdl jakkdl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If cancellable is actually deprecated, as it's phrased in the newsfragment, then it should raise a DeprecationWarning if cancellable is specified.
Alternatives would be to forever support both arguments (yuck), or to make it deprecated later for some reason.

@richardsheridan
Copy link
Contributor Author

I'd sooner abandon this pull request than start raising warnings everywhere. The extra maintenance burden is 3 easy lines of code on our end, but a warning will send our users scrambling to perform busywork. Someone else should add a warning in a future PR for a real reason, like cancellable will be removed in 1.0, at the time such a decision is made to balance user and maintainer burdens.

@@ -0,0 +1,3 @@
To better reflect the underlying thread handling semantics,
`trio.to_thread.run_sync` gained a new keyword argument ``abandon_on_cancel``
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This newsfragment should get a .removal. name (not .feature.) so it shows up in the "Deprecations and removals" section of the release notes.

I would write this as

To better reflect the underlying thread handling semantics,
the keyword argument for `trio.to_thread.run_sync` that was
previously called ``cancellable`` is now named ``abandon_on_cancel``.
It still does the same thing -- allow the thread to be abandoned
if the call to `trio.to_thread.run_sync` is cancelled -- but since we now
have other ways to propagate a cancellation without abandoning
the thread, "cancellable" has become somewhat of a misnomer.
The old ``cancellable`` name is now deprecated.

trio/_threads.py Outdated Show resolved Hide resolved
@richardsheridan
Copy link
Contributor Author

Guess I'm outvoted here. Hope everything goes ok downstream!

applied suggestions from code review
@richardsheridan
Copy link
Contributor Author

richardsheridan commented Oct 31, 2023

trio/_threads.py:295:9: B028 No explicit `stacklevel` keyword argument found

I guess I don't know at what level of the stack to warn?

And the mypy errors are utterly beyond me

Copy link
Contributor

@A5rocks A5rocks left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Re: mypy errors

trio/_tests/test_threads.py Outdated Show resolved Hide resolved
trio/_tests/test_threads.py Outdated Show resolved Hide resolved
@oremanj
Copy link
Member

oremanj commented Oct 31, 2023

I'd sooner abandon this pull request than start raising warnings everywhere. The extra maintenance burden is 3 easy lines of code on our end, but a warning will send our users scrambling to perform busywork. Someone else should add a warning in a future PR for a real reason, like cancellable will be removed in 1.0, at the time such a decision is made to balance user and maintainer burdens.

Sorry, I reviewed without having seen this comment or I would've responded to it initially. I have empathy for this view, but it doesn't match how we've handled all other deprecations in the past, and I think the old name is actively harmful/confusing under the new semantics. (cancellable=False threads are IMO "more cancellable" than cancellable=True threads, because cancellable=False threads might actually terminate their operation if the to_thread.run_sync call is cancelled, while cancellable=True threads definitely won't.) I think most users of to_thread.run_sync probably don't specify cancellable at all, and for those that do, the warning is a nice prompt to reconsider whether they still need abandon-on-cancel now that actually-cancel-on-cancel is available.

trio/_threads.py Outdated Show resolved Hide resolved
@Zac-HD Zac-HD changed the title add abandon_on_cancel to to_thread_run_sync: new name for cancellable flag In to_thread_run_sync(), add abandon_on_cancel= as an alias for the cancellable= flag Oct 31, 2023
trio/_threads.py Outdated Show resolved Hide resolved
trio/_threads.py Outdated Show resolved Hide resolved
richardsheridan and others added 2 commits October 31, 2023 18:31
Co-authored-by: Joshua Oreman <oremanj@gmail.com>
@A5rocks A5rocks requested a review from jakkdl November 1, 2023 05:21
@A5rocks
Copy link
Contributor

A5rocks commented Nov 2, 2023

I'll merge this in soon-ish unless someone has other thoughts!

Copy link
Member

@jakkdl jakkdl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry for being a pain in the butt, looks great!

@richardsheridan richardsheridan deleted the abandon_on_cancel branch November 2, 2023 12:19
@richardsheridan richardsheridan restored the abandon_on_cancel branch November 2, 2023 12:20
@richardsheridan
Copy link
Contributor Author

sorry thought the merge was a merge to master not from master!

@jakkdl
Copy link
Member

jakkdl commented Nov 2, 2023

sorry thought the merge was a merge to master not from master!

No worries! With the ongoing updates to linters etc I wanted to double check that this passes before merging even if GitHub deemed it a safe merge :)

@jakkdl jakkdl merged commit e718fc4 into python-trio:master Nov 2, 2023
38 of 56 checks passed
@richardsheridan richardsheridan deleted the abandon_on_cancel branch November 2, 2023 13:53
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.

None yet

5 participants