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
9b12d9d0
Kaydet (Commit)
9b12d9d0
authored
Nis 24, 2003
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Modernize the code a bit:
use re module make chomp() use rstrip()
üst
b7878d09
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
regextest.py
Demo/comparisons/regextest.py
+5
-9
No files found.
Demo/comparisons/regextest.py
Dosyayı görüntüle @
9b12d9d0
...
...
@@ -18,15 +18,12 @@
import
string
import
sys
import
regex
from
regex_syntax
import
*
regex
.
set_syntax
(
RE_SYNTAX_EGREP
)
import
re
def
main
():
pats
=
map
(
chomp
,
sys
.
stdin
.
readlines
())
bigpat
=
'('
+
string
.
joinfields
(
pats
,
'|'
)
+
')'
prog
=
re
gex
.
compile
(
bigpat
)
bigpat
=
'('
+
'|'
.
join
(
pats
)
+
')'
prog
=
re
.
compile
(
bigpat
)
for
file
in
sys
.
argv
[
1
:]:
try
:
...
...
@@ -40,11 +37,10 @@ def main():
if
not
line
:
break
lineno
=
lineno
+
1
if
prog
.
search
(
line
)
>=
0
:
if
prog
.
search
(
line
):
print
"
%
s:
%
s:
%
s"
%
(
file
,
lineno
,
line
),
def
chomp
(
s
):
if
s
[
-
1
:]
==
'
\n
'
:
return
s
[:
-
1
]
else
:
return
s
return
s
.
rstrip
(
'
\n
'
)
main
()
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