__future__.division was optional in 2.0.0, which was released in 2001 __future__.print_function was optional in 2.6.0a2, which was released in 2008
Simply adding the following line to new project over the past 8 years would have made the move to python 3 less difficult.
from __future__ import (division, print_function)
One of my teammates just upgraded our django framework from 1.4 to 1.8 and it took him almost an entire week to do.
https://docs.python.org/3/library/2to3.html
Simply adding the following line to new project over the past 8 years would have made the move to python 3 less difficult.
While I am annoyed that they didn't just alias xrange to range etc...us users do need to take ownership for our bad decisions.