glutInit broken on python3 for no args
Brought to you by:
mcfletch
The following code passes a unicode str for no args for python3:
args = [as_8_bit(x) for x in args]
if not count:
count, args = 1, ['foo']
It might ought to say the following:
if not count:
count, args = 1, ['foo']
args = [as_8_bit(x) for x in args]
Just try calling glutInit() on python3 to cause the problem.