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
0f606a63
Kaydet (Commit)
0f606a63
authored
Mar 16, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16564: Fixed a performance regression relative to Python 3.1 in the
caching of compiled regular expressions.
üst
de6849fc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
9 deletions
+28
-9
re.py
Lib/re.py
+25
-9
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/re.py
Dosyayı görüntüle @
0f606a63
...
@@ -215,8 +215,8 @@ def compile(pattern, flags=0):
...
@@ -215,8 +215,8 @@ def compile(pattern, flags=0):
def
purge
():
def
purge
():
"Clear the regular expression caches"
"Clear the regular expression caches"
_c
ompile_typed
.
cache_
clear
()
_c
ache
.
clear
()
_c
ompile_repl
.
cache_
clear
()
_c
ache_repl
.
clear
()
def
template
(
pattern
,
flags
=
0
):
def
template
(
pattern
,
flags
=
0
):
"Compile a template pattern, returning a pattern object"
"Compile a template pattern, returning a pattern object"
...
@@ -257,14 +257,19 @@ def escape(pattern):
...
@@ -257,14 +257,19 @@ def escape(pattern):
# --------------------------------------------------------------------
# --------------------------------------------------------------------
# internals
# internals
_cache
=
{}
_cache_repl
=
{}
_pattern_type
=
type
(
sre_compile
.
compile
(
""
,
0
))
_pattern_type
=
type
(
sre_compile
.
compile
(
""
,
0
))
def
_compile
(
pattern
,
flags
):
_MAXCACHE
=
512
return
_compile_typed
(
type
(
pattern
),
pattern
,
flags
)
@functools.lru_cache
(
maxsize
=
500
)
def
_compile
(
pattern
,
flags
):
def
_compile_typed
(
text_bytes_type
,
pattern
,
flags
):
# internal: compile pattern
# internal: compile pattern
try
:
return
_cache
[
type
(
pattern
),
pattern
,
flags
]
except
KeyError
:
pass
if
isinstance
(
pattern
,
_pattern_type
):
if
isinstance
(
pattern
,
_pattern_type
):
if
flags
:
if
flags
:
raise
ValueError
(
raise
ValueError
(
...
@@ -272,12 +277,23 @@ def _compile_typed(text_bytes_type, pattern, flags):
...
@@ -272,12 +277,23 @@ def _compile_typed(text_bytes_type, pattern, flags):
return
pattern
return
pattern
if
not
sre_compile
.
isstring
(
pattern
):
if
not
sre_compile
.
isstring
(
pattern
):
raise
TypeError
(
"first argument must be string or compiled pattern"
)
raise
TypeError
(
"first argument must be string or compiled pattern"
)
return
sre_compile
.
compile
(
pattern
,
flags
)
p
=
sre_compile
.
compile
(
pattern
,
flags
)
if
len
(
_cache
)
>=
_MAXCACHE
:
_cache
.
clear
()
_cache
[
type
(
pattern
),
pattern
,
flags
]
=
p
return
p
@functools.lru_cache
(
maxsize
=
500
)
def
_compile_repl
(
repl
,
pattern
):
def
_compile_repl
(
repl
,
pattern
):
# internal: compile replacement pattern
# internal: compile replacement pattern
return
sre_parse
.
parse_template
(
repl
,
pattern
)
try
:
return
_cache_repl
[
repl
,
pattern
]
except
KeyError
:
pass
p
=
sre_parse
.
parse_template
(
repl
,
pattern
)
if
len
(
_cache_repl
)
>=
_MAXCACHE
:
_cache_repl
.
clear
()
_cache_repl
[
repl
,
pattern
]
=
p
return
p
def
_expand
(
pattern
,
match
,
template
):
def
_expand
(
pattern
,
match
,
template
):
# internal: match.expand implementation hook
# internal: match.expand implementation hook
...
...
Misc/NEWS
Dosyayı görüntüle @
0f606a63
...
@@ -233,6 +233,9 @@ Core and Builtins
...
@@ -233,6 +233,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #16564: Fixed a performance regression relative to Python 3.1 in the
caching of compiled regular expressions.
- Issue #17431: Fix missing import of BytesFeedParser in email.parser.
- Issue #17431: Fix missing import of BytesFeedParser in email.parser.
- Issue #1285086: Get rid of the refcounting hack and speed up
- Issue #1285086: Get rid of the refcounting hack and speed up
...
...
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