Serhiy Storchaka added the comment:

This is a bug in Tk. It uses locale-agnostic Tcl_GetDoubleFromObj() in most 
places, but in some places (especially in canvas) it uses locale-dependent 
strtod(). And that is even worse, strtod() is used even for parsing 
comma-delimited floats (@-indices).

We can't fix it from Python side (except perhaps switching to C locale for 
every Tcl/Tk operation). But in desires a warning in the documentation.

----------
components: +Documentation
stage:  -> needs patch
versions: +Python 3.3, Python 3.4 -Python 3.2

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

Reply via email to