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
5c4a9d65
Kaydet (Commit)
5c4a9d65
authored
Eki 19, 2005
tarafından
Marc-André Lemburg
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Whitespace corrections.
üst
e115ec83
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
19 deletions
+19
-19
unicodeobject.c
Objects/unicodeobject.c
+19
-19
No files found.
Objects/unicodeobject.c
Dosyayı görüntüle @
5c4a9d65
...
...
@@ -850,7 +850,7 @@ char utf7_special[128] = {
#define SPECIAL(c, encodeO, encodeWS) \
((c) > 127 || (c) <= 0 || utf7_special[(c)] == 1 || \
(encodeWS && (utf7_special[(c)] == 2)) || \
(encodeWS && (utf7_special[(c)] == 2)) || \
(encodeO && (utf7_special[(c)] == 3)))
#define B64(n) \
...
...
@@ -861,29 +861,29 @@ char utf7_special[128] = {
((c) == '+' ? 62 : (c) == '/' ? 63 : (c) >= 'a' ? \
(c) - 71 : (c) >= 'A' ? (c) - 65 : (c) + 4 )
#define ENCODE(out, ch, bits) \
while (bits >= 6) { \
*out++ = B64(ch >> (bits-6)); \
bits -= 6; \
#define ENCODE(out, ch, bits)
\
while (bits >= 6) {
\
*out++ = B64(ch >> (bits-6));
\
bits -= 6;
\
}
#define DECODE(out, ch, bits, surrogate) \
while (bits >= 16) { \
Py_UNICODE outCh = (Py_UNICODE) ((ch >> (bits-16)) & 0xffff); \
bits -= 16; \
if (surrogate) {
\
#define DECODE(out, ch, bits, surrogate)
\
while (bits >= 16) {
\
Py_UNICODE outCh = (Py_UNICODE) ((ch >> (bits-16)) & 0xffff);
\
bits -= 16;
\
if (surrogate) {
\
/* We have already generated an error for the high surrogate \
so let's not bother seeing if the low surrogate is correct or not */
\
surrogate = 0;
\
} else if (0xDC00 <= outCh && outCh <= 0xDFFF) {
\
surrogate = 0;
\
} else if (0xDC00 <= outCh && outCh <= 0xDFFF) {
\
/* This is a surrogate pair. Unfortunately we can't represent \
it in a 16-bit character */
\
surrogate = 1;
\
errmsg = "code pairs are not supported"; \
goto utf7Error;
\
} else {
\
*out++ = outCh;
\
}
\
it in a 16-bit character */
\
surrogate = 1;
\
errmsg = "code pairs are not supported";
\
goto utf7Error;
\
} else {
\
*out++ = outCh;
\
}
\
}
PyObject
*
PyUnicode_DecodeUTF7
(
const
char
*
s
,
...
...
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