Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
255bbf2d
Kaydet (Commit)
255bbf2d
authored
Haz 14, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #26386: Fixed ttk.TreeView selection operations with item id's
containing spaces.
üst
6d1d2f22
8e6d09c1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
57 additions
and
1 deletion
+57
-1
test_widgets.py
Lib/tkinter/test/test_ttk/test_widgets.py
+51
-0
ttk.py
Lib/tkinter/ttk.py
+3
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/tkinter/test/test_ttk/test_widgets.py
Dosyayı görüntüle @
255bbf2d
...
...
@@ -1486,6 +1486,57 @@ class TreeviewTest(AbstractWidgetTest, unittest.TestCase):
value
)
def
test_selection
(
self
):
# item 'none' doesn't exist
self
.
assertRaises
(
tkinter
.
TclError
,
self
.
tv
.
selection_set
,
'none'
)
self
.
assertRaises
(
tkinter
.
TclError
,
self
.
tv
.
selection_add
,
'none'
)
self
.
assertRaises
(
tkinter
.
TclError
,
self
.
tv
.
selection_remove
,
'none'
)
self
.
assertRaises
(
tkinter
.
TclError
,
self
.
tv
.
selection_toggle
,
'none'
)
item1
=
self
.
tv
.
insert
(
''
,
'end'
)
item2
=
self
.
tv
.
insert
(
''
,
'end'
)
c1
=
self
.
tv
.
insert
(
item1
,
'end'
)
c2
=
self
.
tv
.
insert
(
item1
,
'end'
)
c3
=
self
.
tv
.
insert
(
item1
,
'end'
)
self
.
assertEqual
(
self
.
tv
.
selection
(),
())
self
.
tv
.
selection_set
((
c1
,
item2
))
self
.
assertEqual
(
self
.
tv
.
selection
(),
(
c1
,
item2
))
self
.
tv
.
selection_set
(
c2
)
self
.
assertEqual
(
self
.
tv
.
selection
(),
(
c2
,))
self
.
tv
.
selection_add
((
c1
,
item2
))
self
.
assertEqual
(
self
.
tv
.
selection
(),
(
c1
,
c2
,
item2
))
self
.
tv
.
selection_add
(
item1
)
self
.
assertEqual
(
self
.
tv
.
selection
(),
(
item1
,
c1
,
c2
,
item2
))
self
.
tv
.
selection_remove
((
item1
,
c3
))
self
.
assertEqual
(
self
.
tv
.
selection
(),
(
c1
,
c2
,
item2
))
self
.
tv
.
selection_remove
(
c2
)
self
.
assertEqual
(
self
.
tv
.
selection
(),
(
c1
,
item2
))
self
.
tv
.
selection_toggle
((
c1
,
c3
))
self
.
assertEqual
(
self
.
tv
.
selection
(),
(
c3
,
item2
))
self
.
tv
.
selection_toggle
(
item2
)
self
.
assertEqual
(
self
.
tv
.
selection
(),
(
c3
,))
self
.
tv
.
insert
(
''
,
'end'
,
id
=
'with spaces'
)
self
.
tv
.
selection_set
(
'with spaces'
)
self
.
assertEqual
(
self
.
tv
.
selection
(),
(
'with spaces'
,))
self
.
tv
.
insert
(
''
,
'end'
,
id
=
'{brace'
)
self
.
tv
.
selection_set
(
'{brace'
)
self
.
assertEqual
(
self
.
tv
.
selection
(),
(
'{brace'
,))
self
.
tv
.
insert
(
''
,
'end'
,
id
=
'unicode
\u20ac
'
)
self
.
tv
.
selection_set
(
'unicode
\u20ac
'
)
self
.
assertEqual
(
self
.
tv
.
selection
(),
(
'unicode
\u20ac
'
,))
self
.
tv
.
insert
(
''
,
'end'
,
id
=
b
'bytes
\xe2\x82\xac
'
)
self
.
tv
.
selection_set
(
b
'bytes
\xe2\x82\xac
'
)
self
.
assertEqual
(
self
.
tv
.
selection
(),
(
'bytes
\xe2\x82\xac
'
,))
def
test_set
(
self
):
self
.
tv
[
'columns'
]
=
[
'A'
,
'B'
]
item
=
self
.
tv
.
insert
(
''
,
'end'
,
values
=
[
'a'
,
'b'
])
...
...
Lib/tkinter/ttk.py
Dosyayı görüntüle @
255bbf2d
...
...
@@ -1396,7 +1396,9 @@ class Treeview(Widget, tkinter.XView, tkinter.YView):
def
selection
(
self
,
selop
=
None
,
items
=
None
):
"""If selop is not specified, returns selected items."""
return
self
.
tk
.
call
(
self
.
_w
,
"selection"
,
selop
,
items
)
if
isinstance
(
items
,
(
str
,
bytes
)):
items
=
(
items
,)
return
self
.
tk
.
splitlist
(
self
.
tk
.
call
(
self
.
_w
,
"selection"
,
selop
,
items
))
def
selection_set
(
self
,
items
):
...
...
Misc/NEWS
Dosyayı görüntüle @
255bbf2d
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.6.0 alpha 3
Library
-------
- Issue #26386: Fixed ttk.TreeView selection operations with item id'
s
containing
spaces
.
-
Issue
#
8637
:
Honor
a
pager
set
by
the
env
var
MANPAGER
(
in
preference
to
one
set
by
the
env
var
PAGER
).
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment