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
07bc3726
Kaydet (Commit)
07bc3726
authored
Ock 11, 2014
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
tkinter.Text.debug() now always returns 0/1.
Fixed a regression inroduced in issue #6157.
üst
f4c9664a
2f26c224
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
__init__.py
Lib/tkinter/__init__.py
+1
-1
test_text.py
Lib/tkinter/test/test_tkinter/test_text.py
+2
-3
No files found.
Lib/tkinter/__init__.py
Dosyayı görüntüle @
07bc3726
...
...
@@ -2963,7 +2963,7 @@ class Text(Widget, XView, YView):
"""Turn on the internal consistency checks of the B-Tree inside the text
widget according to BOOLEAN."""
if
boolean
is
None
:
return
self
.
tk
.
call
(
self
.
_w
,
'debug'
)
return
self
.
tk
.
getboolean
(
self
.
tk
.
call
(
self
.
_w
,
'debug'
)
)
self
.
tk
.
call
(
self
.
_w
,
'debug'
,
boolean
)
def
delete
(
self
,
index1
,
index2
=
None
):
"""Delete the characters between INDEX1 and INDEX2 (not included)."""
...
...
Lib/tkinter/test/test_tkinter/test_text.py
Dosyayı görüntüle @
07bc3726
...
...
@@ -16,13 +16,12 @@ class TextTest(unittest.TestCase):
def
test_debug
(
self
):
text
=
self
.
text
wantobjects
=
self
.
root
.
wantobjects
()
olddebug
=
text
.
debug
()
try
:
text
.
debug
(
0
)
self
.
assertEqual
(
text
.
debug
(),
0
if
wantobjects
else
'0'
)
self
.
assertEqual
(
text
.
debug
(),
0
)
text
.
debug
(
1
)
self
.
assertEqual
(
text
.
debug
(),
1
if
wantobjects
else
'1'
)
self
.
assertEqual
(
text
.
debug
(),
1
)
finally
:
text
.
debug
(
olddebug
)
self
.
assertEqual
(
text
.
debug
(),
olddebug
)
...
...
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