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
5deb2101
Kaydet (Commit)
5deb2101
authored
Agu 31, 2007
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Explicitly convert err->text to Unicode. Fixes #1069.
üst
90d1fcd1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
pythonrun.c
Python/pythonrun.c
+12
-3
No files found.
Python/pythonrun.c
Dosyayı görüntüle @
5deb2101
...
...
@@ -1459,7 +1459,7 @@ PyParser_SetError(perrdetail *err)
static
void
err_input
(
perrdetail
*
err
)
{
PyObject
*
v
,
*
w
,
*
errtype
;
PyObject
*
v
,
*
w
,
*
errtype
,
*
errtext
;
PyObject
*
u
=
NULL
;
char
*
msg
=
NULL
;
errtype
=
PyExc_SyntaxError
;
...
...
@@ -1539,8 +1539,17 @@ err_input(perrdetail *err)
msg
=
"unknown parsing error"
;
break
;
}
v
=
Py_BuildValue
(
"(ziiz)"
,
err
->
filename
,
err
->
lineno
,
err
->
offset
,
err
->
text
);
/* err->text may not be UTF-8 in case of decoding errors.
Explicitly convert to an object. */
if
(
!
err
->
text
)
{
errtext
=
Py_None
;
Py_INCREF
(
Py_None
);
}
else
{
errtext
=
PyUnicode_DecodeUTF8
(
err
->
text
,
strlen
(
err
->
text
),
"replace"
);
}
v
=
Py_BuildValue
(
"(ziiN)"
,
err
->
filename
,
err
->
lineno
,
err
->
offset
,
errtext
);
if
(
err
->
text
!=
NULL
)
{
PyObject_FREE
(
err
->
text
);
err
->
text
=
NULL
;
...
...
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