mirror of https://github.com/python/cpython
gh-118760: Restore the default value of tkinter.wantobjects to 1 (GH-118784)
It was set to 2 in 65f5e586a1
(GH-98592).
This commit is contained in:
parent
6b80a5b20f
commit
e188527c34
|
@ -2177,16 +2177,6 @@ Changes in the Python API
|
|||
returned by :meth:`zipfile.ZipFile.open` was changed from ``'r'`` to ``'rb'``.
|
||||
(Contributed by Serhiy Storchaka in :gh:`115961`.)
|
||||
|
||||
* Callbacks registered in the :mod:`tkinter` module now take arguments as
|
||||
various Python objects (``int``, ``float``, ``bytes``, ``tuple``),
|
||||
not just ``str``.
|
||||
To restore the previous behavior set :mod:`!tkinter` module global
|
||||
:data:`!wantobject` to ``1`` before creating the
|
||||
:class:`!Tk` object or call the :meth:`!wantobject`
|
||||
method of the :class:`!Tk` object with argument ``1``.
|
||||
Calling it with argument ``2`` restores the current default behavior.
|
||||
(Contributed by Serhiy Storchaka in :gh:`66410`.)
|
||||
|
||||
|
||||
Changes in the C API
|
||||
--------------------
|
||||
|
|
|
@ -40,7 +40,7 @@ TclError = _tkinter.TclError
|
|||
from tkinter.constants import *
|
||||
import re
|
||||
|
||||
wantobjects = 2
|
||||
wantobjects = 1
|
||||
_debug = False # set to True to print executed Tcl/Tk commands
|
||||
|
||||
TkVersion = float(_tkinter.TK_VERSION)
|
||||
|
|
|
@ -1346,13 +1346,13 @@ urllib.
|
|||
.. nonce: du4UKW
|
||||
.. section: Library
|
||||
|
||||
Callbacks registered in the :mod:`tkinter` module now take arguments as
|
||||
various Python objects (``int``, ``float``, ``bytes``, ``tuple``), not just
|
||||
``str``. To restore the previous behavior set :mod:`!tkinter` module global
|
||||
:data:`~tkinter.wantobject` to ``1`` before creating the
|
||||
:class:`~tkinter.Tk` object or call the :meth:`~tkinter.Tk.wantobject`
|
||||
method of the :class:`!Tk` object with argument ``1``. Calling it with
|
||||
argument ``2`` restores the current default behavior.
|
||||
Setting the :mod:`!tkinter` module global :data:`~tkinter.wantobject` to ``2``
|
||||
before creating the :class:`~tkinter.Tk` object or call the
|
||||
:meth:`~tkinter.Tk.wantobject` method of the :class:`!Tk` object with argument
|
||||
``2`` makes now arguments to callbacks registered in the :mod:`tkinter` module
|
||||
to be passed as various Python objects (``int``, ``float``, ``bytes``, ``tuple``),
|
||||
depending on their internal represenation in Tcl, instead of always ``str``.
|
||||
:data:`!tkinter.wantobject` is now set to ``2`` by default.
|
||||
|
||||
..
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Restore the default value of ``tkiter.wantobjects`` to ``1``.
|
Loading…
Reference in New Issue