[issue10647] scrollbar crash in non-US locale format settings

2011-07-14 Thread Herm Fischer
Herm Fischer added the comment: Yes, I can confirmm that this issue is gone on 3.2. Closed. -- status: open -> closed ___ Python tracker ___ ___

[issue10647] scrollbar crash in non-US locale format settings

2011-07-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: Two messages deleted at Hans' request since he opened #12558 Hans says there that he could not reproduce *this* issue with 3.2. Herm, please retry with 3.2 as 3.1.4 is last bugfix for 3.1 series. If this works on 3.2, this should be closed. -- nosy: +te

[issue10647] scrollbar crash in non-US locale format settings

2011-07-14 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- Removed message: http://bugs.python.org/msg139876 ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue10647] scrollbar crash in non-US locale format settings

2011-07-14 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- Removed message: http://bugs.python.org/msg139566 ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue10647] scrollbar crash in non-US locale format settings

2011-07-07 Thread Hans Bering
Changes by Hans Bering : Removed file: http://bugs.python.org/file22535/tkinterCrash.py ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue10647] scrollbar crash in non-US locale format settings

2011-07-07 Thread Hans Bering
Hans Bering added the comment: Ok, _now_ I have run into the same problem. I have attached a small script similar to the original entry (but shorter) which will reliably crash with Python 3.1.4 on Windows 7 (64bit) when using a locale with a comma decimal fraction marker (e.g., German). The s

[issue10647] scrollbar crash in non-US locale format settings

2011-07-05 Thread Hans Bering
Hans Bering added the comment: I'm sorry, but it seems the issue described in my previous edit (msg139566) is perhaps not related to the original Scrollbar problem. I had thought they were because of the superficial resemblance (i.e., crashes due to locale-dependent float handling for integer

[issue10647] scrollbar crash in non-US locale format settings

2011-07-01 Thread Hans Bering
Hans Bering added the comment: I have been able to reproduce this problem with a current Python 3.2 + tcl/tk on Ubuntu. I have attached a script which should crash with the following output & stacktrace (you might have to find & set a suitable locale depending on your OS): locale = ('de_DE',

[issue10647] scrollbar crash in non-US locale format settings

2010-12-07 Thread R. David Murray
R. David Murray added the comment: Well, it sounds like you are on Windows, which is a platform I'm not all that familiar with. I think we bundle TK for the windows installer, but I'm not 100% sure. I think to use a different version you have to recompile Python, which on Windows is a non-t

[issue10647] scrollbar crash in non-US locale format settings

2010-12-07 Thread Herm Fischer
Herm Fischer added the comment: I'm using the 3.1.3 x64 of python.org The dll's that came with it: tck85.dll, version 8.5.2.2, created 8/10/2010 tk85.dll, version 8.5.2.2, same date Is there a different way to get the version that is more helpful? Is there an easy way to try the tcl/tk you a

[issue10647] scrollbar crash in non-US locale format settings

2010-12-07 Thread R. David Murray
R. David Murray added the comment: On gentoo linux with tcl/tk 8.5.8, if I use the following command line: >LC_NUMERIC=fr_FR ../release31-maint/python ListboxScrollbarLocaleIssue.py (which runs 3.1.3+) I can move the slider without any problem. I confirmed that locale.format_string("%f", 0.3

[issue10647] scrollbar crash in non-US locale format settings

2010-12-07 Thread Herm Fischer
Herm Fischer added the comment: The attached test case demonstrates this issue, run on pthyon 3.1.3 x64 and included tkinter. When running on US Locale, runs fine. Numbers have the period decimal point, no exceptions raised. Then select control panel, "Language or Region", "Change keyboards

[issue10647] scrollbar crash in non-US locale format settings

2010-12-07 Thread R. David Murray
R. David Murray added the comment: I'm not sure what bug you are reporting here. Are you saying that values using a , are automatically getting generated by tkinter and then rejected when fed back in? If so, I suspect this is a tk problem, not tkinter problem, but someone would have to prod

[issue10647] scrollbar crash in non-US locale format settings

2010-12-07 Thread Brian Curtin
Changes by Brian Curtin : -- type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue10647] scrollbar crash in non-US locale format settings

2010-12-07 Thread Herm Fischer
New submission from Herm Fischer : My app has a tkinter messages listbox with a scrollbar which works fine in US setting, but not when locale is a European setting (with comma for decimal point). It's a highly interactive app with a lot of number formattings in the local locale, and mostly us