summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter/ttk.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-02-01 16:49:21 (GMT)
committerGitHub <noreply@github.com>2018-02-01 16:49:21 (GMT)
commit97f1ca167385bafd9be5d226f61c33412fc081bf (patch)
tree49e0230e7e93865944f2ed9074d8e0d0f2a433b5 /Lib/tkinter/ttk.py
parent12e7cd8a51956a5ce373aac692ae6366c5f86584 (diff)
downloadcpython-97f1ca167385bafd9be5d226f61c33412fc081bf.zip
cpython-97f1ca167385bafd9be5d226f61c33412fc081bf.tar.gz
cpython-97f1ca167385bafd9be5d226f61c33412fc081bf.tar.bz2
[3.8] bpo-31508: Remove support of arguments in tkinter.ttk.Treeview.selection. (GH-3651)
It was deprecated in 3.6.
Diffstat (limited to 'Lib/tkinter/ttk.py')
-rw-r--r--Lib/tkinter/ttk.py23
1 files changed, 2 insertions, 21 deletions
diff --git a/Lib/tkinter/ttk.py b/Lib/tkinter/ttk.py
index e6c90ce..2ab5b59 100644
--- a/Lib/tkinter/ttk.py
+++ b/Lib/tkinter/ttk.py
@@ -28,8 +28,6 @@ __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
import tkinter
from tkinter import _flatten, _join, _stringify, _splitdict
-_sentinel = object()
-
# Verify if Tk is new enough to not need the Tile package
_REQUIRE_TILE = True if tkinter.TkVersion < 8.5 else False
@@ -1396,26 +1394,9 @@ class Treeview(Widget, tkinter.XView, tkinter.YView):
self.tk.call(self._w, "see", item)
- def selection(self, selop=_sentinel, items=None):
+ def selection(self):
"""Returns the tuple of selected items."""
- if selop is _sentinel:
- selop = None
- elif selop is None:
- import warnings
- warnings.warn(
- "The selop=None argument of selection() is deprecated "
- "and will be removed in Python 3.8",
- DeprecationWarning, 3)
- elif selop in ('set', 'add', 'remove', 'toggle'):
- import warnings
- warnings.warn(
- "The selop argument of selection() is deprecated "
- "and will be removed in Python 3.8, "
- "use selection_%s() instead" % (selop,),
- DeprecationWarning, 3)
- else:
- raise TypeError('Unsupported operation')
- return self.tk.splitlist(self.tk.call(self._w, "selection", selop, items))
+ return self.tk.splitlist(self.tk.call(self._w, "selection"))
def _selection(self, selop, items):