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
In python 3.6 with warnings enabled, this line of __init__.py fails to close the file, and python complains about it being unclosed.
__init__.py
VERSION = __version__ = open(os.path.join(ROOT, 'VERSION')).read().strip()
[pid 20160:tid 140430425892608] [remote xxx:50794] ~/env/lib/python3.6/site-packages/weasyprint/__init__.py:42: ResourceWarning: unclosed file <_io.TextIOWrapper name='~/env/lib/python3.6/site-packages/weasyprint/VERSION' mode='r' encoding='ANSI_X3.4-1968'>
The text was updated successfully, but these errors were encountered:
Close version file after reading using context manager
d27964b
fix Kozea#746
Successfully merging a pull request may close this issue.
In python 3.6 with warnings enabled, this line of
__init__.py
fails to close the file, and python complains about it being unclosed.The text was updated successfully, but these errors were encountered: