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
1be63af4
Kaydet (Commit)
1be63af4
authored
Haz 28, 2006
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix end_fill().
üst
ecfec78b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
turtle.py
Lib/lib-tk/turtle.py
+1
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/lib-tk/turtle.py
Dosyayı görüntüle @
1be63af4
...
@@ -721,7 +721,7 @@ def color(*args): _getpen().color(*args)
...
@@ -721,7 +721,7 @@ def color(*args): _getpen().color(*args)
def
write
(
arg
,
move
=
0
):
_getpen
()
.
write
(
arg
,
move
)
def
write
(
arg
,
move
=
0
):
_getpen
()
.
write
(
arg
,
move
)
def
fill
(
flag
):
_getpen
()
.
fill
(
flag
)
def
fill
(
flag
):
_getpen
()
.
fill
(
flag
)
def
begin_fill
():
_getpen
()
.
begin_fill
()
def
begin_fill
():
_getpen
()
.
begin_fill
()
def
end_fill
():
_getpen
.
end_fill
()
def
end_fill
():
_getpen
()
.
end_fill
()
def
circle
(
radius
,
extent
=
None
):
_getpen
()
.
circle
(
radius
,
extent
)
def
circle
(
radius
,
extent
=
None
):
_getpen
()
.
circle
(
radius
,
extent
)
def
goto
(
*
args
):
_getpen
()
.
goto
(
*
args
)
def
goto
(
*
args
):
_getpen
()
.
goto
(
*
args
)
def
heading
():
return
_getpen
()
.
heading
()
def
heading
():
return
_getpen
()
.
heading
()
...
...
Misc/NEWS
Dosyayı görüntüle @
1be63af4
...
@@ -19,6 +19,8 @@ Core and builtins
...
@@ -19,6 +19,8 @@ Core and builtins
Library
Library
-------
-------
- Fix a bug in the turtle module'
s
end_fill
function
.
-
Bug
#
1510580
:
The
'warnings'
module
improperly
required
that
a
Warning
-
Bug
#
1510580
:
The
'warnings'
module
improperly
required
that
a
Warning
category
be
either
a
types
.
ClassType
and
a
subclass
of
Warning
.
The
proper
category
be
either
a
types
.
ClassType
and
a
subclass
of
Warning
.
The
proper
check
is
just
that
it
is
a
subclass
with
Warning
as
the
documentation
states
.
check
is
just
that
it
is
a
subclass
with
Warning
as
the
documentation
states
.
...
...
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