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
d11b5e54
Kaydet (Commit)
d11b5e54
authored
Eki 03, 2000
tarafından
Fredrik Lundh
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Recompile pattern if (?x) flag was found inside the pattern during the
first scan. Closes bug #115040.
üst
4ae8ef84
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
sre_parse.py
Lib/sre_parse.py
+5
-0
re_tests.py
Lib/test/re_tests.py
+4
-2
No files found.
Lib/sre_parse.py
Dosyayı görüntüle @
d11b5e54
...
...
@@ -593,6 +593,11 @@ def parse(str, flags=0, pattern=None):
# p.dump()
if
not
(
flags
&
SRE_FLAG_VERBOSE
)
and
p
.
pattern
.
flags
&
SRE_FLAG_VERBOSE
:
# the VERBOSE flag was switched on inside the pattern. to be
# on the safe side, we'll parse the whole thing again...
return
parse
(
str
,
p
.
pattern
.
flags
)
return
p
def
parse_template
(
source
,
pattern
):
...
...
Lib/test/re_tests.py
Dosyayı görüntüle @
d11b5e54
...
...
@@ -612,9 +612,11 @@ xyzabc
(
r'(([a-z]+):)?([a-z]+)$'
,
'smil'
,
SUCCEED
,
'g1+"-"+g2+"-"+g3'
,
'None-None-smil'
),
# bug 111869 (PRE/PCRE fails on this one, SRE doesn't)
(
r'.*d'
,
'abc
\n
abd'
,
SUCCEED
,
'found'
,
'abd'
),
# bug 112468
# bug 112468
: various expected syntax errors
(
'('
,
''
,
SYNTAX_ERROR
),
(
'[
\\
41]'
,
'!'
,
SUCCEED
,
'found'
,
'!'
),
# bug 115618
# bug 115040: rescan if flags are modified inside pattern
(
r' (?x)foo '
,
'foo'
,
SUCCEED
,
'found'
,
'foo'
),
# bug 115618: negative lookahead
(
r'(?<!abc)(d.f)'
,
'abcdefdof'
,
SUCCEED
,
'found'
,
'dof'
),
]
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