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
5820f3a3
Kaydet (Commit)
5820f3a3
authored
Eyl 19, 2016
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #28193: Use lru_cache in the re module.
üst
5d4b09c1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
11 deletions
+4
-11
re.py
Lib/re.py
+4
-11
No files found.
Lib/re.py
Dosyayı görüntüle @
5820f3a3
...
...
@@ -122,6 +122,7 @@ This module also defines an exception 'error'.
import
enum
import
sre_compile
import
sre_parse
import
functools
try
:
import
_locale
except
ImportError
:
...
...
@@ -234,7 +235,7 @@ def compile(pattern, flags=0):
def
purge
():
"Clear the regular expression caches"
_cache
.
clear
()
_c
ache_repl
.
clear
()
_c
ompile_repl
.
cache_
clear
()
def
template
(
pattern
,
flags
=
0
):
"Compile a template pattern, returning a pattern object"
...
...
@@ -278,7 +279,6 @@ def escape(pattern):
# internals
_cache
=
{}
_cache_repl
=
{}
_pattern_type
=
type
(
sre_compile
.
compile
(
""
,
0
))
...
...
@@ -311,17 +311,10 @@ def _compile(pattern, flags):
_cache
[
type
(
pattern
),
pattern
,
flags
]
=
p
,
loc
return
p
@functools.lru_cache
(
_MAXCACHE
)
def
_compile_repl
(
repl
,
pattern
):
# internal: compile replacement 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
return
sre_parse
.
parse_template
(
repl
,
pattern
)
def
_expand
(
pattern
,
match
,
template
):
# internal: match.expand implementation hook
...
...
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