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
e0837a03
Kaydet (Commit)
e0837a03
authored
Ock 10, 2014
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Try to fix some ttk tests. Error messages were changed in 8.6b3.
üst
46375383
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test_widgets.py
Lib/tkinter/test/test_ttk/test_widgets.py
+3
-3
No files found.
Lib/tkinter/test/test_ttk/test_widgets.py
Dosyayı görüntüle @
e0837a03
...
...
@@ -6,7 +6,7 @@ import sys
import
tkinter.test.support
as
support
from
tkinter.test.test_ttk.test_functions
import
MockTclObj
from
tkinter.test.support
import
tcl_version
from
tkinter.test.support
import
tcl_version
,
get_tk_patchlevel
from
tkinter.test.widget_tests
import
(
add_standard_options
,
noconv
,
AbstractWidgetTest
,
StandardOptionsTests
,
IntegerSizeTests
,
PixelSizeTests
,
setUpModule
)
...
...
@@ -20,7 +20,7 @@ class StandardTtkOptionsTests(StandardOptionsTests):
widget
=
self
.
create
()
self
.
assertEqual
(
widget
[
'class'
],
''
)
errmsg
=
'attempt to change read-only option'
if
tcl_version
<
(
8
,
6
):
if
get_tk_patchlevel
()
<
(
8
,
6
,
0
):
# actually this was changed in 8.6b3
errmsg
=
'Attempt to change read-only option'
self
.
checkInvalidParam
(
widget
,
'class'
,
'Foo'
,
errmsg
=
errmsg
)
widget2
=
self
.
create
(
class_
=
'Foo'
)
...
...
@@ -576,7 +576,7 @@ class PanedWindowTest(AbstractWidgetTest, unittest.TestCase):
widget
=
self
.
create
()
self
.
assertEqual
(
str
(
widget
[
'orient'
]),
'vertical'
)
errmsg
=
'attempt to change read-only option'
if
tcl_version
<
(
8
,
6
):
if
get_tk_patchlevel
()
<
(
8
,
6
,
0
):
# actually this was changen in 8.6b3
errmsg
=
'Attempt to change read-only option'
self
.
checkInvalidParam
(
widget
,
'orient'
,
'horizontal'
,
errmsg
=
errmsg
)
...
...
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