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
c75c1e0e
Unverified
Kaydet (Commit)
c75c1e0e
authored
Tem 22, 2018
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Tem 22, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-34189: Fix checking for bugfix Tcl version. (GH-8397)
üst
e271ca78
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
support.py
Lib/tkinter/test/support.py
+13
-1
test_widgets.py
Lib/tkinter/test/test_tkinter/test_widgets.py
+1
-3
No files found.
Lib/tkinter/test/support.py
Dosyayı görüntüle @
c75c1e0e
import
functools
import
re
import
tkinter
import
unittest
...
...
@@ -54,9 +55,20 @@ import _tkinter
tcl_version
=
tuple
(
map
(
int
,
_tkinter
.
TCL_VERSION
.
split
(
'.'
)))
def
requires_tcl
(
*
version
):
return
unittest
.
skipUnless
(
tcl_version
>=
version
,
if
len
(
version
)
<=
2
:
return
unittest
.
skipUnless
(
tcl_version
>=
version
,
'requires Tcl version >= '
+
'.'
.
join
(
map
(
str
,
version
)))
def
deco
(
test
):
@functools.wraps
(
test
)
def
newtest
(
self
):
if
get_tk_patchlevel
()
<
(
8
,
6
,
5
):
self
.
skipTest
(
'requires Tcl version >= '
+
'.'
.
join
(
map
(
str
,
get_tk_patchlevel
())))
test
(
self
)
return
newtest
return
deco
_tk_patchlevel
=
None
def
get_tk_patchlevel
():
global
_tk_patchlevel
...
...
Lib/tkinter/test/test_tkinter/test_widgets.py
Dosyayı görüntüle @
c75c1e0e
...
...
@@ -717,9 +717,7 @@ class ListboxTest(AbstractWidgetTest, unittest.TestCase):
self
.
checkEnumParam
(
widget
,
'activestyle'
,
'dotbox'
,
'none'
,
'underline'
)
@requires_tcl
(
8
,
6
,
5
)
def
test_justify
(
self
):
AbstractWidgetTest
.
test_justify
(
self
)
test_justify
=
requires_tcl
(
8
,
6
,
5
)(
StandardOptionsTests
.
test_justify
)
def
test_listvariable
(
self
):
widget
=
self
.
create
()
...
...
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