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
bb9b1f1d
Kaydet (Commit)
bb9b1f1d
authored
Kas 19, 2008
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__
üst
65e8fc7f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
turtle.py
Lib/lib-tk/turtle.py
+2
-2
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/lib-tk/turtle.py
Dosyayı görüntüle @
bb9b1f1d
...
...
@@ -359,7 +359,7 @@ class ScrolledCanvas(TK.Frame):
def
__init__
(
self
,
master
,
width
=
500
,
height
=
350
,
canvwidth
=
600
,
canvheight
=
500
):
TK
.
Frame
.
__init__
(
self
,
master
,
width
=
width
,
height
=
height
)
self
.
_root
=
self
.
winfo_toplevel
()
self
.
_root
window
=
self
.
winfo_toplevel
()
self
.
width
,
self
.
height
=
width
,
height
self
.
canvwidth
,
self
.
canvheight
=
canvwidth
,
canvheight
self
.
bg
=
"white"
...
...
@@ -379,7 +379,7 @@ class ScrolledCanvas(TK.Frame):
self
.
hscroll
.
grid
(
padx
=
1
,
in_
=
self
,
pady
=
1
,
row
=
1
,
column
=
0
,
rowspan
=
1
,
columnspan
=
1
,
sticky
=
'news'
)
self
.
reset
()
self
.
_root
.
bind
(
'<Configure>'
,
self
.
onResize
)
self
.
_root
window
.
bind
(
'<Configure>'
,
self
.
onResize
)
def
reset
(
self
,
canvwidth
=
None
,
canvheight
=
None
,
bg
=
None
):
"""Ajust canvas and scrollbars according to given canvas size."""
...
...
Misc/NEWS
Dosyayı görüntüle @
bb9b1f1d
...
...
@@ -42,6 +42,8 @@ Core and Builtins
Library
-------
- Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__.
- httplib.HTTPConnection.putheader() now accepts an arbitrary number of values
for any header, matching what the documentation has claimed for a while.
...
...
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