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
4d75a017
Kaydet (Commit)
4d75a017
authored
Eyl 29, 2014
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #22510: Get rid of little overhead of testing re.DEBUG flag.
üst
d034ece5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
re.py
Lib/re.py
+5
-7
No files found.
Lib/re.py
Dosyayı görüntüle @
4d75a017
...
...
@@ -273,12 +273,10 @@ _pattern_type = type(sre_compile.compile("", 0))
_MAXCACHE
=
512
def
_compile
(
pattern
,
flags
):
# internal: compile pattern
bypass_cache
=
flags
&
DEBUG
if
not
bypass_cache
:
try
:
return
_cache
[
type
(
pattern
),
pattern
,
flags
]
except
KeyError
:
pass
try
:
return
_cache
[
type
(
pattern
),
pattern
,
flags
]
except
KeyError
:
pass
if
isinstance
(
pattern
,
_pattern_type
):
if
flags
:
raise
ValueError
(
...
...
@@ -287,7 +285,7 @@ def _compile(pattern, flags):
if
not
sre_compile
.
isstring
(
pattern
):
raise
TypeError
(
"first argument must be string or compiled pattern"
)
p
=
sre_compile
.
compile
(
pattern
,
flags
)
if
not
bypass_cache
:
if
not
(
flags
&
DEBUG
)
:
if
len
(
_cache
)
>=
_MAXCACHE
:
_cache
.
clear
()
_cache
[
type
(
pattern
),
pattern
,
flags
]
=
p
...
...
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