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

[mypyc] Optimize __(a)enter__/__(a)exit__ paths for native case #14530

Merged
merged 1 commit into from
Jan 30, 2023

Conversation

jhance
Copy link
Collaborator

@jhance jhance commented Jan 26, 2023

Closes mypyc/mypyc#904

Directly calls enter and exit handlers in the case that the context manager is implemented natively.

Unfortunately the implementation becomes a bit more complicated because there are two different places where we call exit in different ways, and they both need to support the native and non-native cases.

Closes mypyc/mypyc#904

Directly calls enter and exit handlers in the case that the context manager is implemented natively.

Unfortunately the implementation becomes a bit more complicated because there are two different places where we call exit in different ways, and they both need to support the native and non-native cases.
Copy link
Collaborator

@JukkaL JukkaL left a comment

Choose a reason for hiding this comment

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

Looks good to me! Nice to have this performance bottleneck fixed.

@JukkaL JukkaL merged commit b2cf9d1 into python:master Jan 30, 2023
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.

Optimize with statement with native classes
2 participants