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
b3bfc3d8
Kaydet (Commit)
b3bfc3d8
authored
Eyl 21, 2010
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #9899: Fix test_tkinter.test_font on various platforms. Patch by
Ned Deily.
üst
52d42503
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
test_font.py
Lib/tkinter/test/test_tkinter/test_font.py
+10
-2
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/tkinter/test/test_tkinter/test_font.py
Dosyayı görüntüle @
b3bfc3d8
...
...
@@ -2,13 +2,21 @@ import unittest
import
tkinter
from
tkinter
import
font
from
test.support
import
requires
,
run_unittest
import
tkinter.test.support
as
support
requires
(
'gui'
)
class
FontTest
(
unittest
.
TestCase
):
def
setUp
(
self
):
support
.
root_deiconify
()
def
tearDown
(
self
):
support
.
root_withdraw
()
def
test_font_eq
(
self
):
font1
=
font
.
nametofont
(
"
system
"
)
font2
=
font
.
nametofont
(
"
system
"
)
font1
=
font
.
nametofont
(
"
TkDefaultFont
"
)
font2
=
font
.
nametofont
(
"
TkDefaultFont
"
)
self
.
assertIsNot
(
font1
,
font2
)
self
.
assertEqual
(
font1
,
font2
)
self
.
assertNotEqual
(
font1
,
font1
.
copy
())
...
...
Misc/NEWS
Dosyayı görüntüle @
b3bfc3d8
...
...
@@ -207,6 +207,9 @@ Tools/Demos
Tests
-----
- Issue #9899: Fix test_tkinter.test_font on various platforms. Patch by
Ned Deily.
- Issue #9894: Do not hardcode ENOENT in test_subprocess.
- Issue #9315: Added tests for the trace module. Patch by Eli Bendersky.
...
...
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