[TASK]-[PYTHON-5623]: Change with_transaction callback return type to Awaitable#2594
Merged
NoahStapp merged 4 commits intomongodb:masterfrom Oct 29, 2025
Merged
[TASK]-[PYTHON-5623]: Change with_transaction callback return type to Awaitable#2594NoahStapp merged 4 commits intomongodb:masterfrom
NoahStapp merged 4 commits intomongodb:masterfrom
Conversation
Jibola
approved these changes
Oct 21, 2025
Contributor
Jibola
left a comment
There was a problem hiding this comment.
NIT: date on the release notes. Also let's note that we added the changelog information for an unrelated change.
| - Removed support for Eventlet. | ||
| Eventlet is actively being sunset by its maintainers and has compatibility issues with PyMongo's dnspython dependency. | ||
|
|
||
| Changes in Version 4.15.4 (2025/10/21) |
Contributor
There was a problem hiding this comment.
is this also bundling the release alongside?
Contributor
Author
There was a problem hiding this comment.
What do you mean? We'll update the release date when the release is ready to go out.
Contributor
There was a problem hiding this comment.
I assumed it would have XXXX/XX/XX, since it hasn't been released yet. This isn't a blocking issue since it'll get updated when its going out.
blink1073
pushed a commit
to blink1073/mongo-python-driver
that referenced
this pull request
Nov 11, 2025
… Awaitable (mongodb#2594) Co-authored-by: Logan Pulley <logan@pulley.host> (cherry picked from commit 5f00966)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PYTHON-5623
Summary
AsyncClientSession.with_transaction's callback is typed as Callable[[AsyncClientSession], Coroutine[Any, Any, _T]] but does not use any of Coroutine's interface that isn't already provided in its parent type, Awaitable.
In other words: at runtime, any function that returns an Awaitable works as callback, but callback's type unnecessarily requires that the function's return type matches Coroutine.
This PR changes the type from Callable[[AsyncClientSession], Coroutine[Any, Any, _T]] to Callable[[AsyncClientSession], Awaitable[_T]] so that a non-Coroutine Awaitable can be used as callback.
Changes in this PR
This PR changes the type from Callable[[AsyncClientSession], Coroutine[Any, Any, _T]] to Callable[[AsyncClientSession], Awaitable[_T]] so that a non-Coroutine Awaitable can be used as callback.
Testing Plan
A new test to verify that this change works for both type checking and code execution.
Screenshots (optional)
N/A.
Checklist
Checklist for Author
Checklist for Reviewer @Jibola
Focus Areas for Reviewer (optional)