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

Make .__exit__() return a bool #396

Merged
merged 1 commit into from
May 10, 2021
Merged

Make .__exit__() return a bool #396

merged 1 commit into from
May 10, 2021

Conversation

brainix
Copy link
Owner

@brainix brainix commented May 10, 2021

If .__exit__() returns False, any potential exception arising from
the with block is propagated.

If .__exit__() returns True, the exception is suppressed.

https://docs.python.org/3/library/stdtypes.html#contextmanager.__exit__

If `.__exit__()` returns `False`, any potential exception arising from
the `with` block is propagated.

If `.__exit__()` returns `True`, the exception is suppressed.

https://docs.python.org/3/library/stdtypes.html#contextmanager.__exit__
@brainix
Copy link
Owner Author

brainix commented May 10, 2021

🐟

@brainix brainix merged commit dba9948 into master May 10, 2021
@brainix brainix deleted the context-manager-exit branch May 10, 2021 02:08
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.

1 participant