Message363371
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 |
|
Date |
User |
Action |
Args |
2020-03-04 18:18:50 | thawn | set | recipients:
+ thawn |
2020-03-04 18:18:50 | thawn | set | messageid: <1583345930.38.0.475106859206.issue39827@roundup.psfhosted.org> |
2020-03-04 18:18:50 | thawn | link | issue39827 messages |
2020-03-04 18:18:50 | thawn | create | |
|