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
7b9bb05d
Kaydet (Commit)
7b9bb05d
authored
Eki 19, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Speed up the search a bit -- don't drag a mark around...
üst
cc0ade8c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
13 deletions
+17
-13
SearchBinding.py
Tools/idle/SearchBinding.py
+17
-13
No files found.
Tools/idle/SearchBinding.py
Dosyayı görüntüle @
7b9bb05d
import
string
import
re
import
tkSimpleDialog
import
tkMessageBox
...
...
@@ -52,24 +53,27 @@ class SearchBinding:
self
.
text
.
bell
()
##print "No program"
return
"break"
self
.
text
.
mark_set
(
"find"
,
"insert"
)
while
1
:
chars
=
self
.
text
.
get
(
"find"
,
"find lineend +1c"
)
##print "Searching", `chars`
if
not
chars
:
self
.
text
.
bell
()
##print "end of buffer"
break
m
=
self
.
prog
.
search
(
chars
)
line
,
col
=
map
(
int
,
string
.
split
(
self
.
text
.
index
(
"insert"
),
"."
))
chars
=
self
.
text
.
get
(
"
%
d.0"
%
line
,
"
%
d.0"
%
(
line
+
1
))
while
chars
:
m
=
self
.
prog
.
search
(
chars
,
col
)
if
m
:
i
,
j
=
m
.
span
()
self
.
text
.
mark_set
(
"insert"
,
"find +
%
dc"
%
j
)
self
.
text
.
mark_set
(
"find"
,
"find +
%
dc"
%
i
)
self
.
text
.
mark_set
(
"insert"
,
"
%
d.
%
d"
%
(
line
,
j
)
)
self
.
text
.
tag_remove
(
"sel"
,
"1.0"
,
"end"
)
self
.
text
.
tag_add
(
"sel"
,
"find"
,
"insert"
)
self
.
text
.
tag_add
(
"sel"
,
"
%
d.
%
d"
%
(
line
,
i
),
"
%
d.
%
d"
%
(
line
,
j
))
self
.
text
.
see
(
"insert"
)
break
self
.
text
.
mark_set
(
"find"
,
"find lineend +1c"
)
line
=
line
+
1
col
=
0
chars
=
self
.
text
.
get
(
"
%
d.0"
%
line
,
"
%
d.0"
%
(
line
+
1
))
else
:
# Not found
self
.
text
.
bell
()
return
"break"
def
goto_line_event
(
self
,
event
):
...
...
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