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
7f0d59f3
Kaydet (Commit)
7f0d59f3
authored
Eyl 12, 2018
tarafından
Sergey Fedoseev
Kaydeden (comit)
Serhiy Storchaka
Eyl 12, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Simplified implementation of _sre.ascii_iscased(). (GH-9097)
üst
731ff68e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
_sre.c
Modules/_sre.c
+1
-6
No files found.
Modules/_sre.c
Dosyayı görüntüle @
7f0d59f3
...
...
@@ -100,11 +100,6 @@ static unsigned int sre_lower_ascii(unsigned int ch)
return
((
ch
)
<
128
?
Py_TOLOWER
(
ch
)
:
ch
);
}
static
unsigned
int
sre_upper_ascii
(
unsigned
int
ch
)
{
return
((
ch
)
<
128
?
Py_TOUPPER
(
ch
)
:
ch
);
}
/* locale-specific character predicates */
/* !(c & ~N) == (c < N+1) for any unsigned c, this avoids
* warnings when c's type supports only numbers < N+1 */
...
...
@@ -293,7 +288,7 @@ _sre_ascii_iscased_impl(PyObject *module, int character)
/*[clinic end generated code: output=4f454b630fbd19a2 input=9f0bd952812c7ed3]*/
{
unsigned
int
ch
=
(
unsigned
int
)
character
;
return
ch
!=
sre_lower_ascii
(
ch
)
||
ch
!=
sre_upper_ascii
(
ch
);
return
ch
<
128
&&
Py_ISALPHA
(
ch
);
}
/*[clinic input]
...
...
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