Till Korten <webmas...@korten.at> added the comment:

I just found the following code in lines 314-320 of 
[tkinter/ttk.py](https://github.com/python/cpython/blob/master/Lib/tkinter/ttk.py),
 which are clearly not localization-aware:
```
def _to_number(x):
    if isinstance(x, str):
        if '.' in x:
            x = float(x)
        else:
            x = int(x)
    return x
```

I'll keep looking for similar stuff and add a pull request once I think I have 
nailed down the issue
I'll look for something similar in

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue39827>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to