Skip to content

Conversation

stsievert
Copy link

The code checked for exactly Python 3. When Python 4 is released, this code will break and revert to the Python 2 behavior, something we don't want.

That is, I changed

py3 = (sys.version_info[0] == 3)

to

not_py2 = (sys.version_info[0] >= 3)

This is a small refactor, and hence a web-interface change. I haven't tested any of this code.

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