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
bcde10aa
Kaydet (Commit)
bcde10aa
authored
May 16, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #26765: Ensure that bytes- and unicode-specific stringlib files are used
with correct type.
üst
cbcc2fd6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
12 deletions
+15
-12
codecs.h
Objects/stringlib/codecs.h
+3
-3
ctype.h
Objects/stringlib/ctype.h
+3
-2
find_max_char.h
Objects/stringlib/find_max_char.h
+3
-2
join.h
Objects/stringlib/join.h
+1
-1
localeutil.h
Objects/stringlib/localeutil.h
+2
-2
transmogrify.h
Objects/stringlib/transmogrify.h
+3
-2
No files found.
Objects/stringlib/codecs.h
Dosyayı görüntüle @
bcde10aa
/* stringlib: codec implementations */
#if STRINGLIB_IS_UNICODE
#if !STRINGLIB_IS_UNICODE
# error "codecs.h is specific to Unicode"
#endif
/* Mask to quickly check whether a C 'long' contains a
non-ASCII, UTF8-encoded char. */
...
...
@@ -823,5 +825,3 @@ STRINGLIB(utf32_encode)(const STRINGLIB_CHAR *in,
#undef SWAB4
#endif
#endif
/* STRINGLIB_IS_UNICODE */
Objects/stringlib/ctype.h
Dosyayı görüntüle @
bcde10aa
/* NOTE: this API is -ONLY- for use with single byte character strings. */
/* Do not use it with Unicode. */
#if STRINGLIB_IS_UNICODE
# error "ctype.h only compatible with byte-wise strings"
#endif
#include "bytes_methods.h"
...
...
Objects/stringlib/find_max_char.h
Dosyayı görüntüle @
bcde10aa
/* Finding the optimal width of unicode characters in a buffer */
#if STRINGLIB_IS_UNICODE
#if !STRINGLIB_IS_UNICODE
# error "find_max_char.h is specific to Unicode"
#endif
/* Mask to quickly check whether a C 'long' contains a
non-ASCII, UTF8-encoded char. */
...
...
@@ -129,5 +131,4 @@ STRINGLIB(find_max_char)(const STRINGLIB_CHAR *begin, const STRINGLIB_CHAR *end)
#undef MAX_CHAR_UCS4
#endif
/* STRINGLIB_SIZEOF_CHAR == 1 */
#endif
/* STRINGLIB_IS_UNICODE */
Objects/stringlib/join.h
Dosyayı görüntüle @
bcde10aa
/* stringlib: bytes joining implementation */
#if STRINGLIB_
SIZEOF_CHAR != 1
#if STRINGLIB_
IS_UNICODE
#error join.h only compatible with byte-wise strings
#endif
...
...
Objects/stringlib/localeutil.h
Dosyayı görüntüle @
bcde10aa
...
...
@@ -2,8 +2,8 @@
#include <locale.h>
#if
ndef
STRINGLIB_IS_UNICODE
# error "localeutil is specific to Unicode"
#if
!
STRINGLIB_IS_UNICODE
# error "localeutil
.h
is specific to Unicode"
#endif
typedef
struct
{
...
...
Objects/stringlib/transmogrify.h
Dosyayı görüntüle @
bcde10aa
/* NOTE: this API is -ONLY- for use with single byte character strings. */
/* Do not use it with Unicode. */
#if STRINGLIB_IS_UNICODE
# error "transmogrify.h only compatible with byte-wise strings"
#endif
/* the more complicated methods. parts of these should be pulled out into the
shared code in bytes_methods.c to cut down on duplicate code bloat. */
...
...
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