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
c06bb7af
Kaydet (Commit)
c06bb7af
authored
Kas 04, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Avoid the Py_UNICODE type in codecs.c
üst
b31f1bcd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
codecs.c
Python/codecs.c
+11
-4
No files found.
Python/codecs.c
Dosyayı görüntüle @
c06bb7af
...
...
@@ -778,7 +778,7 @@ PyCodec_SurrogatePassErrors(PyObject *exc)
}
else
if
(
PyObject_IsInstance
(
exc
,
PyExc_UnicodeDecodeError
))
{
unsigned
char
*
p
;
Py_U
NICODE
ch
=
0
;
Py_U
CS4
ch
=
0
;
if
(
PyUnicodeDecodeError_GetStart
(
exc
,
&
start
))
return
NULL
;
if
(
!
(
object
=
PyUnicodeDecodeError_GetObject
(
exc
)))
...
...
@@ -804,7 +804,10 @@ PyCodec_SurrogatePassErrors(PyObject *exc)
PyErr_SetObject
(
PyExceptionInstance_Class
(
exc
),
exc
);
return
NULL
;
}
return
Py_BuildValue
(
"(u#n)"
,
&
ch
,
1
,
start
+
3
);
res
=
PyUnicode_FromOrdinal
(
ch
);
if
(
res
==
NULL
)
return
NULL
;
return
Py_BuildValue
(
"(Nn)"
,
res
,
start
+
3
);
}
else
{
wrong_exception_type
(
exc
);
...
...
@@ -853,8 +856,9 @@ PyCodec_SurrogateEscapeErrors(PyObject *exc)
return
restuple
;
}
else
if
(
PyObject_IsInstance
(
exc
,
PyExc_UnicodeDecodeError
))
{
PyObject
*
str
;
unsigned
char
*
p
;
Py_U
NICODE
ch
[
4
];
/* decode up to 4 bad bytes. */
Py_U
CS2
ch
[
4
];
/* decode up to 4 bad bytes. */
int
consumed
=
0
;
if
(
PyUnicodeDecodeError_GetStart
(
exc
,
&
start
))
return
NULL
;
...
...
@@ -879,7 +883,10 @@ PyCodec_SurrogateEscapeErrors(PyObject *exc)
PyErr_SetObject
(
PyExceptionInstance_Class
(
exc
),
exc
);
return
NULL
;
}
return
Py_BuildValue
(
"(u#n)"
,
ch
,
consumed
,
start
+
consumed
);
str
=
PyUnicode_FromKindAndData
(
PyUnicode_2BYTE_KIND
,
ch
,
consumed
);
if
(
str
==
NULL
)
return
NULL
;
return
Py_BuildValue
(
"(Nn)"
,
str
,
start
+
consumed
);
}
else
{
wrong_exception_type
(
exc
);
...
...
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