You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While I would love to have this Python 3.5 compatible, probably more feasible to make 2.7 and 3.3 compatible. From what I understand 3.3 is one of the easier py3 versions to maintain forward and backward projects.
We should use six sparingly and when needed to do conditional version blocks, treat py2 as the special case:
ifsix.PY2:
# Special codeelse:
# Modern code
This way it allows py4 when released to fall back to py3 code which will probably be compatible.
The text was updated successfully, but these errors were encountered:
While I would love to have this Python 3.5 compatible, probably more feasible to make 2.7 and 3.3 compatible. From what I understand 3.3 is one of the easier py3 versions to maintain forward and backward projects.
We should use
six
sparingly and when needed to do conditional version blocks, treat py2 as the special case:This way it allows py4 when released to fall back to py3 code which will probably be compatible.
The text was updated successfully, but these errors were encountered: