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
Would be a fun task for anyone who wanted to try out Dataclasses: https://www.youtube.com/watch?v=T-TwcmT6Rcw. Can use the backport in 3.6 https://github.com/ericvsmith/dataclasses and just swap it out when we move to 3.7.
Could do something like:
if sys.version_info[0] < 3: import subprocess32 as subprocess else: import subprocess
except check 3.6 vs 3.7 and only import if 3.6.
Might be useful approach for future stuff because the structs let us know what were keeping.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Would be a fun task for anyone who wanted to try out Dataclasses: https://www.youtube.com/watch?v=T-TwcmT6Rcw. Can use the backport in 3.6 https://github.com/ericvsmith/dataclasses and just swap it out when we move to 3.7.
Could do something like:
except check 3.6 vs 3.7 and only import if 3.6.
Might be useful approach for future stuff because the structs let us know what were keeping.
The text was updated successfully, but these errors were encountered: