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

implement context management with the with keyword #94

Closed
zshaheen opened this issue Feb 21, 2017 · 1 comment
Closed

implement context management with the with keyword #94

zshaheen opened this issue Feb 21, 2017 · 1 comment

Comments

@zshaheen
Copy link
Contributor

I think cdms should support context management with the with keyword. So the idea is to have something similar to how files are handled in Python:

with cdms2.open('precc.nc') as precc_file:
   var = precc_file('PRECC')

This automatically has exception handling and automatically closes the file after leaving the scope. All that is needed is to implement __enter__() and __exit__() functions.

@doutriaux1
Copy link
Contributor

should be fixed by #121

@doutriaux1 doutriaux1 modified the milestone: 2.10 May 5, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants