Hi! 1. from PySide.QtCore import QLocale as PySideLocale #PySide 1.1.2 on Win32
2. from PyQt4.QtCore import QLocale as PyQtLocale 3. 4. print(PySideLocale().toString(9999999.99, 'f', 2)) #prints '10 000 000,00' 5. print(PyQtLocale().toString(9999999.99, 'f', 2)) #prints '9 999 999,99' I guess it's a bug, right?
_______________________________________________ PySide mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/pyside
