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
854e76ef
Kaydet (Commit)
854e76ef
authored
Tem 21, 2014
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #21868: Prevent turtle crash due to invalid undo buffer size.
üst
01963e6a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
turtle.py
Lib/turtle.py
+1
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/turtle.py
Dosyayı görüntüle @
854e76ef
...
...
@@ -2594,7 +2594,7 @@ class RawTurtle(TPen, TNavigator):
Example (for a Turtle instance named turtle):
>>> turtle.setundobuffer(42)
"""
if
size
is
None
:
if
size
is
None
or
size
<=
0
:
self
.
undobuffer
=
None
else
:
self
.
undobuffer
=
Tbuffer
(
size
)
...
...
Misc/NEWS
Dosyayı görüntüle @
854e76ef
...
...
@@ -30,6 +30,8 @@ Library
- Issue #21044: tarfile.open() now handles fileobj with an integer '
name
'
attribute. Based on patch by Martin Panter.
- Issue #21867: Prevent turtle crash due to invalid undo buffer size.
- Issue #19076: Don'
t
pass
the
redundant
'file'
argument
to
self
.
error
().
-
Issue
#
21942
:
Fixed
source
file
viewing
in
pydoc
's server mode on Windows.
...
...
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