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
d61d077b
Kaydet (Commit)
d61d077b
authored
Eyl 17, 2010
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#1730136: Fix comparison between a tk Font object and an object of a different type.
üst
19ec67ac
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
1 deletion
+24
-1
font.py
Lib/tkinter/font.py
+1
-1
test_font.py
Lib/tkinter/test/test_tkinter/test_font.py
+20
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/tkinter/font.py
Dosyayı görüntüle @
d61d077b
...
...
@@ -97,7 +97,7 @@ class Font:
return
self
.
name
def
__eq__
(
self
,
other
):
return
self
.
name
==
other
.
name
and
isinstance
(
other
,
Font
)
return
isinstance
(
other
,
Font
)
and
self
.
name
==
other
.
name
def
__getitem__
(
self
,
key
):
return
self
.
cget
(
key
)
...
...
Lib/tkinter/test/test_tkinter/test_font.py
0 → 100644
Dosyayı görüntüle @
d61d077b
import
unittest
import
tkinter
from
tkinter
import
font
from
test.support
import
requires
,
run_unittest
requires
(
'gui'
)
class
FontTest
(
unittest
.
TestCase
):
def
test_font_eq
(
self
):
font1
=
font
.
nametofont
(
"system"
)
font2
=
font
.
nametofont
(
"system"
)
self
.
assertIsNot
(
font1
,
font2
)
self
.
assertEqual
(
font1
,
font2
)
self
.
assertNotEqual
(
font1
,
font1
.
copy
())
self
.
assertNotEqual
(
font1
,
0
)
tests_gui
=
(
FontTest
,
)
if
__name__
==
"__main__"
:
run_unittest
(
*
tests_gui
)
Misc/NEWS
Dosyayı görüntüle @
d61d077b
...
...
@@ -52,6 +52,9 @@ Core and Builtins
Library
-------
- Issue #1730136: Fix the comparison between a tk.font.Font and an object of
another kind.
- Issue #9441: logging has better coverage for rotating file handlers.
- Issue #9865: collections.OrderedDict now has a __sizeof__ method.
...
...
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