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
4fafda73
Kaydet (Commit)
4fafda73
authored
Haz 08, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #24408: Fixed AttributeError in measure() and metrics() methods of
tkinter.Font.
üst
391af751
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
font.py
Lib/tkinter/font.py
+3
-3
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/tkinter/font.py
Dosyayı görüntüle @
4fafda73
...
...
@@ -151,7 +151,7 @@ class Font:
args
=
(
text
,)
if
displayof
:
args
=
(
'-displayof'
,
displayof
,
text
)
return
self
.
_
root
.
tk
.
getint
(
self
.
_call
(
"font"
,
"measure"
,
self
.
name
,
*
args
))
return
self
.
_tk
.
getint
(
self
.
_call
(
"font"
,
"measure"
,
self
.
name
,
*
args
))
def
metrics
(
self
,
*
options
,
**
kw
):
"""Return font metrics.
...
...
@@ -164,13 +164,13 @@ class Font:
args
=
(
'-displayof'
,
displayof
)
if
options
:
args
=
args
+
self
.
_get
(
options
)
return
self
.
_
root
.
tk
.
getint
(
return
self
.
_tk
.
getint
(
self
.
_call
(
"font"
,
"metrics"
,
self
.
name
,
*
args
))
else
:
res
=
self
.
_split
(
self
.
_call
(
"font"
,
"metrics"
,
self
.
name
,
*
args
))
options
=
{}
for
i
in
range
(
0
,
len
(
res
),
2
):
options
[
res
[
i
][
1
:]]
=
self
.
_
root
.
tk
.
getint
(
res
[
i
+
1
])
options
[
res
[
i
][
1
:]]
=
self
.
_tk
.
getint
(
res
[
i
+
1
])
return
options
...
...
Misc/NEWS
Dosyayı görüntüle @
4fafda73
...
...
@@ -15,6 +15,9 @@ Core and Builtins
Library
-------
- Issue #24408: Fixed AttributeError in measure() and metrics() methods of
tkinter.Font.
- Issue #14373: C implementation of functools.lru_cache() now can be used with
methods.
...
...
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