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
a96c2d40
Kaydet (Commit)
a96c2d40
authored
Eki 24, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Cope with destruction of the window
üst
c62cf36e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
7 deletions
+24
-7
turtle.py
Tools/idle/turtle.py
+24
-7
No files found.
Tools/idle/turtle.py
Dosyayı görüntüle @
a96c2d40
...
...
@@ -210,12 +210,16 @@ class RawPen:
arrow
=
"last"
,
capstyle
=
"round"
,
fill
=
self
.
_color
)
for
i
in
range
(
1
,
1
+
nhops
):
x
,
y
=
x0
+
dx
*
i
/
nhops
,
y0
+
dy
*
i
/
nhops
self
.
_canvas
.
coords
(
item
,
x0
,
y0
,
x
,
y
)
self
.
_canvas
.
update
()
self
.
_canvas
.
after
(
10
)
self
.
_canvas
.
itemconfigure
(
item
,
arrow
=
"none"
)
try
:
for
i
in
range
(
1
,
1
+
nhops
):
x
,
y
=
x0
+
dx
*
i
/
nhops
,
y0
+
dy
*
i
/
nhops
self
.
_canvas
.
coords
(
item
,
x0
,
y0
,
x
,
y
)
self
.
_canvas
.
update
()
self
.
_canvas
.
after
(
10
)
self
.
_canvas
.
itemconfigure
(
item
,
arrow
=
"none"
)
except
Tk
.
TclError
:
# Probably the window was closed!
return
else
:
item
=
self
.
_canvas
.
create_line
(
x0
,
y0
,
x1
,
y1
,
width
=
self
.
_width
,
...
...
@@ -226,6 +230,7 @@ class RawPen:
_root
=
None
_canvas
=
None
_pen
=
None
class
Pen
(
RawPen
):
...
...
@@ -233,13 +238,25 @@ class Pen(RawPen):
global
_root
,
_canvas
if
_root
is
None
:
_root
=
Tk
.
Tk
()
_root
.
wm_protocol
(
"WM_DELETE_WINDOW"
,
self
.
destroy
)
if
_canvas
is
None
:
# XXX Should have scroll bars
_canvas
=
Tk
.
Canvas
(
_root
,
background
=
"white"
)
_canvas
.
pack
(
expand
=
1
,
fill
=
"both"
)
RawPen
.
__init__
(
self
,
_canvas
)
_pen
=
None
def
destroy
(
self
):
global
_root
,
_canvas
,
_pen
self
.
clear
()
if
self
is
_pen
:
_pen
=
None
root
=
_root
;
_root
=
None
canvas
=
_canvas
;
_canvas
=
None
if
root
:
try
:
root
.
destroy
()
except
Tk
.
TclError
:
pass
def
_getpen
():
global
_pen
...
...
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