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
114454e9
Kaydet (Commit)
114454e9
authored
Eyl 26, 2017
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Eyl 26, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-28293: Don't completely dump the regex cache when full. (#3768)
üst
0e950dd2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
re.py
Lib/re.py
+12
-2
2017-09-26-17-51-17.bpo-28293.UC5pm4.rst
...S.d/next/Library/2017-09-26-17-51-17.bpo-28293.UC5pm4.rst
+1
-0
No files found.
Lib/re.py
Dosyayı görüntüle @
114454e9
...
...
@@ -128,6 +128,13 @@ try:
except
ImportError
:
_locale
=
None
# try _collections first to reduce startup cost
try
:
from
_collections
import
OrderedDict
except
ImportError
:
from
collections
import
OrderedDict
# public symbols
__all__
=
[
"match"
,
"fullmatch"
,
"search"
,
"sub"
,
"subn"
,
"split"
,
...
...
@@ -260,7 +267,7 @@ def escape(pattern):
# --------------------------------------------------------------------
# internals
_cache
=
{}
_cache
=
OrderedDict
()
_pattern_type
=
type
(
sre_compile
.
compile
(
""
,
0
))
...
...
@@ -281,7 +288,10 @@ def _compile(pattern, flags):
p
=
sre_compile
.
compile
(
pattern
,
flags
)
if
not
(
flags
&
DEBUG
):
if
len
(
_cache
)
>=
_MAXCACHE
:
_cache
.
clear
()
try
:
_cache
.
popitem
(
False
)
except
KeyError
:
pass
_cache
[
type
(
pattern
),
pattern
,
flags
]
=
p
return
p
...
...
Misc/NEWS.d/next/Library/2017-09-26-17-51-17.bpo-28293.UC5pm4.rst
0 → 100644
Dosyayı görüntüle @
114454e9
The regular expression cache is no longer completely dumped when it is full.
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