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
f1368ef9
Kaydet (Commit)
f1368ef9
authored
Eyl 23, 2007
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix turtle module: None and int are not comparable, map returns an iterator.
üst
8ae62b60
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
turtle.py
Lib/lib-tk/turtle.py
+5
-5
No files found.
Lib/lib-tk/turtle.py
Dosyayı görüntüle @
f1368ef9
...
...
@@ -531,7 +531,7 @@ class RawPen:
def
_goto
(
self
,
x1
,
y1
):
x0
,
y0
=
self
.
_position
self
.
_position
=
map
(
float
,
(
x1
,
y1
))
self
.
_position
=
(
float
(
x1
),
float
(
y1
))
if
self
.
_filling
:
self
.
_path
.
append
(
self
.
_position
)
if
self
.
_drawing
:
...
...
@@ -749,25 +749,25 @@ def setup(**geometry):
global
_width
,
_height
,
_startx
,
_starty
width
=
geometry
.
get
(
'width'
,
_width
)
if
width
>=
0
or
width
==
None
:
if
width
is
None
or
width
>=
0
:
_width
=
width
else
:
raise
ValueError
(
"width can not be less than 0"
)
height
=
geometry
.
get
(
'height'
,
_height
)
if
height
>=
0
or
height
==
None
:
if
height
is
None
or
height
>=
0
:
_height
=
height
else
:
raise
ValueError
(
"height can not be less than 0"
)
startx
=
geometry
.
get
(
'startx'
,
_startx
)
if
startx
>=
0
or
startx
==
None
:
if
startx
is
None
or
startx
>=
0
:
_startx
=
_startx
else
:
raise
ValueError
(
"startx can not be less than 0"
)
starty
=
geometry
.
get
(
'starty'
,
_starty
)
if
starty
>=
0
or
starty
==
None
:
if
starty
is
None
or
starty
>=
0
:
_starty
=
starty
else
:
raise
ValueError
(
"startx can not be less than 0"
)
...
...
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