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
4ccea941
Kaydet (Commit)
4ccea941
authored
Haz 30, 2000
tarafından
Fredrik Lundh
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- reverted to "\x is binary byte"
- removed evil tabs from sre_parse and sre_compile
üst
1739be50
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
sre_compile.py
Lib/sre_compile.py
+1
-1
sre_parse.py
Lib/sre_parse.py
+5
-4
test_sre
Lib/test/output/test_sre
+0
-1
No files found.
Lib/sre_compile.py
Dosyayı görüntüle @
4ccea941
...
...
@@ -39,7 +39,7 @@ def _compile(code, pattern, flags):
return
_sre
.
getlower
(
literal
,
flags
)
else
:
emit
(
OPCODES
[
op
])
fixup
=
lambda
x
:
x
fixup
=
lambda
x
:
x
skip
=
len
(
code
);
emit
(
0
)
for
op
,
av
in
av
:
emit
(
OPCODES
[
op
])
...
...
Lib/sre_parse.py
Dosyayı görüntüle @
4ccea941
...
...
@@ -19,8 +19,9 @@ from sre_constants import *
# FIXME: should be 65535, but the arraymodule is still broken
MAXREPEAT
=
32767
# FIXME: same here
CHARMASK
=
0x7fff
# FIXME: might change in 2.0 final. but for now, this seems
# to be the best way to be compatible with 1.5.2
CHARMASK
=
0xff
SPECIAL_CHARS
=
".
\\
[{()*+?^$|"
REPEAT_CHARS
=
"*+?{"
...
...
@@ -616,9 +617,9 @@ def expand_template(template, match):
a
=
p
.
append
sep
=
match
.
string
[:
0
]
if
type
(
sep
)
is
type
(
""
):
char
=
chr
char
=
chr
else
:
char
=
unichr
char
=
unichr
for
c
,
s
in
template
:
if
c
is
LITERAL
:
a
(
char
(
s
))
...
...
Lib/test/output/test_sre
Dosyayı görüntüle @
4ccea941
test_sre
=== Failed incorrectly ('\\x00ffffffffffffff', '\377', 0, 'found', '\377')
=== Failed incorrectly ('^(.+)?B', 'AB', 0, 'g1', 'A')
=== Failed incorrectly ('(a+)+\\1', 'aa', 0, 'found+"-"+g1', 'aa-a')
=== grouping error ('([^/]*/)*sub1/', 'd:msgs/tdir/sub1/trial/away.cpp', 0, 'found+"-"+g1', 'd:msgs/tdir/sub1/-tdir/') 'd:msgs/tdir/sub1/-trial/' should be 'd:msgs/tdir/sub1/-tdir/'
...
...
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