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
5e65ce67
Kaydet (Commit)
5e65ce67
authored
Ara 29, 2002
tarafından
Kurt B. Kaiser
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove some old debugging print statements.
üst
4ada7ad3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
10 deletions
+0
-10
EditorWindow.py
Lib/idlelib/EditorWindow.py
+0
-10
No files found.
Lib/idlelib/EditorWindow.py
Dosyayı görüntüle @
5e65ce67
...
...
@@ -139,9 +139,7 @@ class EditorWindow:
if
self
.
ispythonsource
(
filename
):
self
.
color
=
color
=
self
.
ColorDelegator
()
per
.
insertfilter
(
color
)
##print "Initial colorizer"
else
:
##print "No initial colorizer"
self
.
color
=
None
self
.
undo
=
undo
=
self
.
UndoDelegator
()
...
...
@@ -459,7 +457,6 @@ class EditorWindow:
def
addcolorizer
(
self
):
if
self
.
color
:
return
##print "Add colorizer"
self
.
per
.
removefilter
(
self
.
undo
)
self
.
color
=
self
.
ColorDelegator
()
self
.
per
.
insertfilter
(
self
.
color
)
...
...
@@ -468,7 +465,6 @@ class EditorWindow:
def
rmcolorizer
(
self
):
if
not
self
.
color
:
return
##print "Remove colorizer"
self
.
per
.
removefilter
(
self
.
undo
)
self
.
per
.
removefilter
(
self
.
color
)
self
.
color
=
None
...
...
@@ -759,7 +755,6 @@ class EditorWindow:
text
=
self
.
text
text
.
keydefs
=
keydefs
for
event
,
keylist
in
keydefs
.
items
():
##print>>sys.__stderr__, "event, list: ", event, keylist
if
keylist
:
apply
(
text
.
event_add
,
(
event
,)
+
tuple
(
keylist
))
...
...
@@ -772,7 +767,6 @@ class EditorWindow:
defs
=
self
.
Bindings
.
menudefs
if
keydefs
is
None
:
keydefs
=
self
.
Bindings
.
default_keydefs
##print>>sys.__stderr__, "*keydefs: " , keydefs
menudict
=
self
.
menudict
text
=
self
.
text
for
mname
,
itemlist
in
defs
:
...
...
@@ -788,7 +782,6 @@ class EditorWindow:
if
checkbutton
:
label
=
label
[
1
:]
underline
,
label
=
prepstr
(
label
)
##print>>sys.__stderr__, "*Event: " , event
accelerator
=
get_accelerator
(
keydefs
,
event
)
def
command
(
text
=
text
,
event
=
event
):
text
.
event_generate
(
event
)
...
...
@@ -798,9 +791,6 @@ class EditorWindow:
command
=
command
,
accelerator
=
accelerator
,
variable
=
var
)
else
:
##print>>sys.__stderr__, "label, ul, cmd, accel: ",
## label, underline, command,
## accelerator
menu
.
add_command
(
label
=
label
,
underline
=
underline
,
command
=
command
,
accelerator
=
accelerator
)
...
...
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