[issue10731] UnicodeDecodeError in OS X tkinter when binding to

2014-05-22 Thread Dougal Graham
Dougal Graham added the comment: I have resolved this by using the official Python distribution, rather than Homebrew's. -- ___ Python tracker ___ __

[issue10731] UnicodeDecodeError in OS X tkinter when binding to

2014-05-22 Thread Dougal Graham
Dougal Graham added the comment: I recenly encuntered this error in OSX 10.9.2, using pthon 3.3 and 3.4 from Homebrew. I tried installing activetcl 8.6 package, but it still fails dependably. -- nosy: +Dougal.Graham ___ Python tracker

[issue10731] UnicodeDecodeError in OS X tkinter when binding to

2012-08-02 Thread Marc Culler
Marc Culler added the comment: Thanks, Ned! It seems to be completely fixed by 8.5.12. -- nosy: +Marc.Culler ___ Python tracker ___ _

[issue10731] UnicodeDecodeError in OS X tkinter when binding to

2012-08-02 Thread Ned Deily
Ned Deily added the comment: Tcl/Tk 8.5.12 has now been released. After installing ActiveTcl 8.5.12 for OS X, your 3.2 test case that previously readily failed for me no longer does. So I hope you also find that the problem is now resolved. -- stage: -> committed/rejected status: pe

[issue10731] UnicodeDecodeError in OS X tkinter when binding to

2012-04-23 Thread Ned Deily
Ned Deily added the comment: A potential fix has been generated for Tk. I'll close this issue once the fix has been verified with _tkinter. -- resolution: -> out of date stage: needs patch -> status: open -> pending ___ Python tracker

[issue10731] UnicodeDecodeError in OS X tkinter when binding to

2012-04-22 Thread Kevin Walzer
Kevin Walzer added the comment: I've added some comments to this on the Tkinter-dev mailing list, but to summarize, the bug is not reproducible on the Tcl side of the bridge, and so I am not clear what changes can be made in Tk's internals. It might e better to proceed with implementing a fix

[issue10731] UnicodeDecodeError in OS X tkinter when binding to

2012-04-21 Thread Ned Deily
Ned Deily added the comment: I've opened Tk Toolkit bug 3520202: https://sourceforge.net/tracker/?func=detail&aid=3520202&group_id=12997&atid=112997 -- ___ Python tracker ___ __

[issue10731] UnicodeDecodeError in OS X tkinter when binding to

2012-04-21 Thread Ned Deily
Ned Deily added the comment: It looks like the problem is that the current Cocoa Tcl/Tk 8.5.x returns an incorrect MouseWheel event. Using the supplied test program and breakpointing in PythonCmd (around Modules/_tkinter.c:2027 in default), I found that it is being called from Tcl for MouseW

[issue10731] UnicodeDecodeError in OS X tkinter when binding to

2012-04-21 Thread Ned Deily
Ned Deily added the comment: The exception also occurs with Python 3.3 linked with Cocoa Tk 8.5. However, the it does not appear when Python 3.x is linked with Carbon Tk 8.4. -- components: +Tkinter stage: -> needs patch versions: +Python 3.3 ___

[issue10731] UnicodeDecodeError in OS X tkinter when binding to

2011-07-24 Thread Marc Culler
Marc Culler added the comment: I am running OSX 10.5.8 on this macbook. The Tcl/Tk package on the system is ActiveState Tcl/Tk 8.4.19. I just installed Python 3.2 (r32:88452, Feb 20 2011, 10:19:59) from http://www.python.org/getit/releases/3.2/ and I am still seeing this bug. It does not o

[issue10731] UnicodeDecodeError in OS X tkinter when binding to

2011-07-19 Thread Ronald Oussoren
Ronald Oussoren added the comment: This is almost certainly a bug in Tk. What OSX version are you using, and which python installer did you use? One thing you could try is installing a matching copy of ActiveState's Tk (8.4 for the 32-bit build, 8.5 for intel-only builds of python 2.7 and 3.

[issue10731] UnicodeDecodeError in OS X tkinter when binding to

2010-12-18 Thread R. David Murray
Changes by R. David Murray : -- type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue10731] UnicodeDecodeError in OS X tkinter when binding to

2010-12-18 Thread R. David Murray
Changes by R. David Murray : -- assignee: -> ronaldoussoren components: +Macintosh -Tkinter nosy: +ned.deily, ronaldoussoren ___ Python tracker ___ _

[issue10731] UnicodeDecodeError in OS X tkinter when binding to

2010-12-18 Thread Marc Culler
New submission from Marc Culler : In OS X tkinter the "two-finger scroll" generates events. The following code: bug.py import tkinter def mouse_wheel(event): print('Mouse wheel event') tk = tkinter.Tk() list = tkinter.Listbox(tk) list.bind('', mouse_wheel) for n in range(20): li