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
4d819840
Kaydet (Commit)
4d819840
authored
28 years ago
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Ping's new version -- more efficient at finding the keywords.
üst
3d99e358
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
37 deletions
+13
-37
keyword.py
Lib/keyword.py
+13
-37
No files found.
Lib/keyword.py
Dosyayı görüntüle @
4d819840
...
...
@@ -60,58 +60,34 @@ def main():
else
:
optfile
=
"Lib/keyword.py"
# scan the source file for keywords
try
:
fp
=
open
(
iptfile
)
except
IOError
,
err
:
sys
.
stderr
.
write
(
"I/O error reading from
%
s:
%
s
\n
"
%
(
optfile
,
err
))
sys
.
exit
(
1
)
fp
=
open
(
iptfile
)
strprog
=
regex
.
compile
(
'"
\
([^"]+
\
)"'
)
labelprog
=
regex
.
compile
(
'static[
\t
]+label.*=[
\t
]+{'
)
keywordlist
=
[]
lines
=
[]
while
1
:
line
=
fp
.
readline
()
if
not
line
:
break
if
labelprog
.
search
(
line
)
>
-
1
:
break
while
line
:
line
=
fp
.
readline
()
if
string
.
find
(
line
,
';'
)
>
-
1
:
break
if
strprog
.
search
(
line
)
>
-
1
:
keywordlist
.
append
(
strprog
.
group
(
1
))
if
string
.
find
(
line
,
'{1, "'
)
>
-
1
and
strprog
.
search
(
line
)
>
-
1
:
lines
.
append
(
" '"
+
strprog
.
group
(
1
)
+
"',
\n
"
)
fp
.
close
()
keywordlist
.
sort
()
keywordlist
.
remove
(
"EMPTY"
)
lines
.
sort
()
# load the output skeleton from the target
try
:
fp
=
open
(
optfile
)
format
=
fp
.
readlines
()
fp
.
close
()
except
IOError
,
err
:
sys
.
stderr
.
write
(
"I/O error reading from
%
s:
%
s
\n
"
%
(
optfile
,
err
))
sys
.
exit
(
2
)
fp
=
open
(
optfile
)
format
=
fp
.
readlines
()
fp
.
close
()
# insert the lines of keywords
try
:
start
=
format
.
index
(
"#--start keywords--
\n
"
)
+
1
end
=
format
.
index
(
"#--end keywords--
\n
"
)
format
[
start
:
end
]
=
lines
except
ValueError
:
sys
.
stderr
.
write
(
"target does not contain format markers
\n
"
)
sys
.
exit
(
3
)
# insert the lines of keywords
lines
=
[]
for
keyword
in
keywordlist
:
lines
.
append
(
" '"
+
keyword
+
"',
\n
"
)
format
[
start
:
end
]
=
lines
sys
.
exit
(
1
)
# write the output file
try
:
fp
=
open
(
optfile
,
'w'
)
except
IOError
,
err
:
sys
.
stderr
.
write
(
"I/O error writing to
%
s:
%
s
\n
"
%
(
optfile
,
err
))
sys
.
exit
(
4
)
fp
=
open
(
optfile
,
'w'
)
fp
.
write
(
string
.
join
(
format
,
''
))
fp
.
close
()
if
__name__
==
"__main__"
:
main
()
if
__name__
==
"__main__"
:
main
()
This diff is collapsed.
Click to expand it.
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