[issue19954] test_tk floating point exception on my gentoo box running tk 8.6.1

2013-12-12 Thread R. David Murray
R. David Murray added the comment: floating point exception with or without the pack/update. -- ___ Python tracker ___ ___ Python-bugs

[issue19954] test_tk floating point exception on my gentoo box running tk 8.6.1

2013-12-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: What with such example? $ wish % menubutton .mb -text "Test" .mb % pack .mb % update % .mb configure -indicatoron 1 Try also without pack and update. -- ___ Python tracker

[issue19954] test_tk floating point exception on my gentoo box running tk 8.6.1

2013-12-12 Thread R. David Murray
R. David Murray added the comment: Ah. That produces the floating point exception as well. -- ___ Python tracker ___ ___ Python-bugs-

[issue19954] test_tk floating point exception on my gentoo box running tk 8.6.1

2013-12-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Please run following commands in wish: $ wish % menubutton .mb .mb % .mb configure -indicatoron 1 -- ___ Python tracker ___ _

[issue19954] test_tk floating point exception on my gentoo box running tk 8.6.1

2013-12-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: What if run following code? import tkinter root = tkinter.Tk() widget = tkinter.Menubutton(root) for value in (True, 1, 'true', 'yes', 'on'): print(value, flush=True) widget['indicatoron'] = value -- ___ Py

[issue19954] test_tk floating point exception on my gentoo box running tk 8.6.1

2013-12-12 Thread R. David Murray
R. David Murray added the comment: rdmurray@hey:~/python/p34>./python -m test -v -uall -m test_indicatoron test_tk == CPython 3.4.0b1 (default:59fb79d0411e, Dec 11 2013, 16:39:28) [GCC 4.7.2] == Linux-3.10.6-gentoo-i686-Intel-R-_Core-TM-_i5_CPU_M_450_@_2.40GHz-with-gentoo-2.2 little-endian ==

[issue19954] test_tk floating point exception on my gentoo box running tk 8.6.1

2013-12-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Does separated test crash? ./python -m test -v -uall -m test_indicatoron test_tk -- ___ Python tracker ___ __

[issue19954] test_tk floating point exception on my gentoo box running tk 8.6.1

2013-12-11 Thread R. David Murray
New submission from R. David Murray: A while ago I started getting a floating point exception from test_tk in the tip in all active versions, but I'm only now getting around to reporting it. I've tracked this down to the tests introduced in issue 19085, which it looks like revealed some other