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
01ac8b6a
Kaydet (Commit)
01ac8b6a
authored
Tem 07, 2012
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use correct types for ASCII_CHAR_MASK integer constants.
üst
7319f69f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
codecs.h
Objects/stringlib/codecs.h
+2
-2
find_max_char.h
Objects/stringlib/find_max_char.h
+2
-2
unicodeobject.c
Objects/unicodeobject.c
+2
-2
No files found.
Objects/stringlib/codecs.h
Dosyayı görüntüle @
01ac8b6a
...
...
@@ -8,9 +8,9 @@
/* Mask to quickly check whether a C 'long' contains a
non-ASCII, UTF8-encoded char. */
#if (SIZEOF_LONG == 8)
# define ASCII_CHAR_MASK 0x8080808080808080L
# define ASCII_CHAR_MASK 0x8080808080808080
U
L
#elif (SIZEOF_LONG == 4)
# define ASCII_CHAR_MASK 0x80808080L
# define ASCII_CHAR_MASK 0x80808080
U
L
#else
# error C 'long' size should be either 4 or 8!
#endif
...
...
Objects/stringlib/find_max_char.h
Dosyayı görüntüle @
01ac8b6a
...
...
@@ -8,9 +8,9 @@
/* Mask to quickly check whether a C 'long' contains a
non-ASCII, UTF8-encoded char. */
#if (SIZEOF_LONG == 8)
# define UCS1_ASCII_CHAR_MASK 0x8080808080808080L
# define UCS1_ASCII_CHAR_MASK 0x8080808080808080
U
L
#elif (SIZEOF_LONG == 4)
# define UCS1_ASCII_CHAR_MASK 0x80808080L
# define UCS1_ASCII_CHAR_MASK 0x80808080
U
L
#else
# error C 'long' size should be either 4 or 8!
#endif
...
...
Objects/unicodeobject.c
Dosyayı görüntüle @
01ac8b6a
...
...
@@ -4639,9 +4639,9 @@ PyUnicode_DecodeUTF8(const char *s,
/* Mask to quickly check whether a C 'long' contains a
non-ASCII, UTF8-encoded char. */
#if (SIZEOF_LONG == 8)
# define ASCII_CHAR_MASK 0x8080808080808080L
# define ASCII_CHAR_MASK 0x8080808080808080
U
L
#elif (SIZEOF_LONG == 4)
# define ASCII_CHAR_MASK 0x80808080L
# define ASCII_CHAR_MASK 0x80808080
U
L
#else
# error C 'long' size should be either 4 or 8!
#endif
...
...
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