We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
OsmApi should provide a .close() method to close the underlying _session object, to avoid ResourceWarning: unclosed <ssl.SSLSocket warnings.
.close()
_session
ResourceWarning: unclosed <ssl.SSLSocket
It could also provide a __enter__ and a __exit__, to implicitly call the close at exit.
__enter__
__exit__
The text was updated successfully, but these errors were encountered:
Related to #89
Sorry, something went wrong.
The fix is part of release 1.3.0
Successfully merging a pull request may close this issue.
OsmApi should provide a
.close()
method to close the underlying_session
object, to avoidResourceWarning: unclosed <ssl.SSLSocket
warnings.It could also provide a
__enter__
and a__exit__
, to implicitly call the close at exit.The text was updated successfully, but these errors were encountered: