I have written a Python 3.3 program in Ubuntu that works fine. However, when I run it in windows, I get Unicode encode errors. The line it complains about is:
if minor: print (textwrap.fill('{}: {}'.format(minor,MINOR[minor])),"\n") but I cannot see why it would work under Ubuntu and not Windows. Which character won't windows like? I can't see anything wrong with it.
