[PyOpenGL-Devel] [ pyopengl-Bugs-3536957 ] glutInit broken on python3 for no args
Brought to you by:
mcfletch
From: SourceForge.net <no...@so...> - 2012-06-21 17:40:58
|
Bugs item #3536957, was opened at 2012-06-21 10:40 Message generated for change (Tracker Item Submitted) made by tomobag You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105988&aid=3536957&group_id=5988 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: GLUT Group: v3.0.0 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Tom Palmer (tomobag) Assigned to: Mike C. Fletcher (mcfletch) Summary: glutInit broken on python3 for no args Initial Comment: 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. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105988&aid=3536957&group_id=5988 |