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
f10006cd
Kaydet (Commit)
f10006cd
authored
Eki 24, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #25464: Fixed HList.header_exists() in Tix module by adding
a workaround to Tix library bug.
üst
59addd60
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
Tix.py
Lib/lib-tk/Tix.py
+5
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/lib-tk/Tix.py
Dosyayı görüntüle @
f10006cd
...
...
@@ -928,7 +928,11 @@ class HList(TixWidget, XView, YView):
return
self
.
tk
.
call
(
self
.
_w
,
'header'
,
'cget'
,
col
,
opt
)
def
header_exists
(
self
,
col
):
return
self
.
tk
.
call
(
self
.
_w
,
'header'
,
'exists'
,
col
)
# A workaround to Tix library bug (issue #25464).
# The documented command is "exists", but only erroneous "exist" is
# accepted.
return
self
.
tk
.
getboolean
(
self
.
tk
.
call
(
self
.
_w
,
'header'
,
'exist'
,
col
))
header_exist
=
header_exists
def
header_delete
(
self
,
col
):
self
.
tk
.
call
(
self
.
_w
,
'header'
,
'delete'
,
col
)
...
...
Misc/NEWS
Dosyayı görüntüle @
f10006cd
...
...
@@ -60,6 +60,9 @@ Core and Builtins
Library
-------
- Issue #25464: Fixed HList.header_exists() in Tix module by adding
a workaround to Tix library bug.
- Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive.
- Issue #28480: Fix error building _sqlite3 module when multithreading is
...
...
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