dropped; *from* is spelled ``from_`` because :keyword:`from` is a Python
keyword.
+ With a non-integer *resolution*, see :ref:`numeric values and the locale
+ <tkinter-numeric-locale>`.
+
.. method:: get()
Return the current value of the scale.
text.
Inherits from :class:`Widget` and :class:`XView`.
+ With a non-integer *increment*, see :ref:`numeric values and the locale
+ <tkinter-numeric-locale>`.
+
Many of the methods take an *index* argument identifying a character in the
spinbox's string.
As described in the Tk ``spinbox`` manual page, *index* may be a numeric
Return the value of the variable as a :class:`float`.
+ .. _tkinter-numeric-locale:
+
+ .. note::
+
+ A floating-point value is always parsed with a period (``.``) as the
+ decimal separator, but :class:`Spinbox`, :class:`Scale` and
+ :class:`ttk.Spinbox <tkinter.ttk.Spinbox>` format it according to the
+ ``LC_NUMERIC`` locale. Under a locale that uses a comma they produce a
+ value that :meth:`get` cannot read, raising :exc:`TclError`. Set
+ ``LC_NUMERIC`` to a locale that uses a period (such as ``'C'``) to avoid
+ this.
+
.. class:: BooleanVar(master=None, value=None, name=None)