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
49197473
Unverified
Kaydet (Commit)
49197473
authored
Eki 05, 2018
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Eki 05, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Simplify flags checks in sre_compile.py. (GH-9718)
Flags SRE_FLAG_UNICODE and SRE_FLAG_ASCII are mutually exclusive.
üst
6f9c55d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
sre_compile.py
Lib/sre_compile.py
+5
-5
No files found.
Lib/sre_compile.py
Dosyayı görüntüle @
49197473
...
...
@@ -80,7 +80,7 @@ def _compile(code, pattern, flags):
tolower
=
None
fixes
=
None
if
flags
&
SRE_FLAG_IGNORECASE
and
not
flags
&
SRE_FLAG_LOCALE
:
if
flags
&
SRE_FLAG_UNICODE
and
not
flags
&
SRE_FLAG_ASCII
:
if
flags
&
SRE_FLAG_UNICODE
:
iscased
=
_sre
.
unicode_iscased
tolower
=
_sre
.
unicode_tolower
fixes
=
_ignorecase_fixes
...
...
@@ -196,7 +196,7 @@ def _compile(code, pattern, flags):
av
=
AT_MULTILINE
.
get
(
av
,
av
)
if
flags
&
SRE_FLAG_LOCALE
:
av
=
AT_LOCALE
.
get
(
av
,
av
)
elif
(
flags
&
SRE_FLAG_UNICODE
)
and
not
(
flags
&
SRE_FLAG_ASCII
)
:
elif
flags
&
SRE_FLAG_UNICODE
:
av
=
AT_UNICODE
.
get
(
av
,
av
)
emit
(
av
)
elif
op
is
BRANCH
:
...
...
@@ -217,7 +217,7 @@ def _compile(code, pattern, flags):
emit
(
op
)
if
flags
&
SRE_FLAG_LOCALE
:
av
=
CH_LOCALE
[
av
]
elif
(
flags
&
SRE_FLAG_UNICODE
)
and
not
(
flags
&
SRE_FLAG_ASCII
)
:
elif
flags
&
SRE_FLAG_UNICODE
:
av
=
CH_UNICODE
[
av
]
emit
(
av
)
elif
op
is
GROUPREF
:
...
...
@@ -265,7 +265,7 @@ def _compile_charset(charset, flags, code):
elif
op
is
CATEGORY
:
if
flags
&
SRE_FLAG_LOCALE
:
emit
(
CH_LOCALE
[
av
])
elif
(
flags
&
SRE_FLAG_UNICODE
)
and
not
(
flags
&
SRE_FLAG_ASCII
)
:
elif
flags
&
SRE_FLAG_UNICODE
:
emit
(
CH_UNICODE
[
av
])
else
:
emit
(
av
)
...
...
@@ -453,7 +453,7 @@ def _generate_overlap_table(prefix):
def
_get_iscased
(
flags
):
if
not
flags
&
SRE_FLAG_IGNORECASE
:
return
None
elif
flags
&
SRE_FLAG_UNICODE
and
not
flags
&
SRE_FLAG_ASCII
:
elif
flags
&
SRE_FLAG_UNICODE
:
return
_sre
.
unicode_iscased
else
:
return
_sre
.
ascii_iscased
...
...
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