colorama.init() is documented to do nothing on non-Windows systems.
Perhaps there's a bug somewhere, but I don't know how to reproduce it. It seems to do the right thing for me: $ python3 -c 'import sys, colorama; colorama.init(); print(sys.stdout is sys.__stdout__, sys.stderr is sys.__stderr__)' True True -- Jakub Wilk

