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
9c15ec1c
Kaydet (Commit)
9c15ec1c
authored
Eki 23, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19365: Optimized the parsing of long replacement string in re.sub*()
functions.
üst
4d397008
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
44 deletions
+33
-44
sre_parse.py
Lib/sre_parse.py
+30
-44
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/sre_parse.py
Dosyayı görüntüle @
9c15ec1c
...
...
@@ -769,35 +769,33 @@ def parse_template(source, pattern):
# group references
s
=
Tokenizer
(
source
)
sget
=
s
.
get
p
=
[]
a
=
p
.
append
def
literal
(
literal
,
p
=
p
,
pappend
=
a
):
if
p
and
p
[
-
1
][
0
]
is
LITERAL
:
p
[
-
1
]
=
LITERAL
,
p
[
-
1
][
1
]
+
literal
else
:
pappend
((
LITERAL
,
literal
))
sep
=
source
[:
0
]
if
isinstance
(
sep
,
str
):
makechar
=
chr
else
:
makechar
=
chr
while
1
:
groups
=
[]
literals
=
[]
literal
=
[]
lappend
=
literal
.
append
def
addgroup
(
index
):
if
literal
:
literals
.
append
(
''
.
join
(
literal
))
del
literal
[:]
groups
.
append
((
len
(
literals
),
index
))
literals
.
append
(
None
)
while
True
:
this
=
sget
()
if
this
is
None
:
break
# end of replacement string
if
this
and
this
[
0
]
==
"
\\
"
:
if
this
[
0
]
==
"
\\
"
:
# group
c
=
this
[
1
:
2
]
c
=
this
[
1
]
if
c
==
"g"
:
name
=
""
if
s
.
match
(
"<"
):
while
1
:
while
True
:
char
=
sget
()
if
char
is
None
:
raise
error
(
"unterminated group name"
)
if
char
==
">"
:
break
name
=
name
+
char
name
+=
char
if
not
name
:
raise
error
(
"missing group name"
)
try
:
...
...
@@ -811,50 +809,38 @@ def parse_template(source, pattern):
index
=
pattern
.
groupindex
[
name
]
except
KeyError
:
raise
IndexError
(
"unknown group name"
)
a
((
MARK
,
index
)
)
a
ddgroup
(
index
)
elif
c
==
"0"
:
if
s
.
next
in
OCTDIGITS
:
this
=
this
+
sget
()
this
+=
sget
()
if
s
.
next
in
OCTDIGITS
:
this
=
this
+
sget
()
l
iteral
(
makecha
r
(
int
(
this
[
1
:],
8
)
&
0xff
))
this
+=
sget
()
l
append
(
ch
r
(
int
(
this
[
1
:],
8
)
&
0xff
))
elif
c
in
DIGITS
:
isoctal
=
False
if
s
.
next
in
DIGITS
:
this
=
this
+
sget
()
this
+=
sget
()
if
(
c
in
OCTDIGITS
and
this
[
2
]
in
OCTDIGITS
and
s
.
next
in
OCTDIGITS
):
this
=
this
+
sget
()
this
+=
sget
()
isoctal
=
True
l
iteral
(
makecha
r
(
int
(
this
[
1
:],
8
)
&
0xff
))
l
append
(
ch
r
(
int
(
this
[
1
:],
8
)
&
0xff
))
if
not
isoctal
:
a
((
MARK
,
int
(
this
[
1
:])
))
a
ddgroup
(
int
(
this
[
1
:]
))
else
:
try
:
this
=
makecha
r
(
ESCAPES
[
this
][
1
])
this
=
ch
r
(
ESCAPES
[
this
][
1
])
except
KeyError
:
pass
l
iteral
(
this
)
l
append
(
this
)
else
:
literal
(
this
)
# convert template to groups and literals lists
i
=
0
groups
=
[]
groupsappend
=
groups
.
append
literals
=
[
None
]
*
len
(
p
)
if
isinstance
(
source
,
str
):
encode
=
lambda
x
:
x
else
:
lappend
(
this
)
if
literal
:
literals
.
append
(
''
.
join
(
literal
))
if
not
isinstance
(
source
,
str
):
# The tokenizer implicitly decodes bytes objects as latin-1, we must
# therefore re-encode the final representation.
encode
=
lambda
x
:
x
.
encode
(
'latin-1'
)
for
c
,
s
in
p
:
if
c
is
MARK
:
groupsappend
((
i
,
s
))
# literal[i] is already None
else
:
literals
[
i
]
=
encode
(
s
)
i
=
i
+
1
literals
=
[
None
if
s
is
None
else
s
.
encode
(
'latin-1'
)
for
s
in
literals
]
return
groups
,
literals
def
expand_template
(
template
,
match
):
...
...
Misc/NEWS
Dosyayı görüntüle @
9c15ec1c
...
...
@@ -19,6 +19,9 @@ Core and Builtins
Library
-------
- Issue #19365: Optimized the parsing of long replacement string in re.sub*()
functions.
- Issue #19352: Fix unittest discovery when a module can be reached
through several paths (e.g. under Debian/Ubuntu with virtualenv).
...
...
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