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
a4b48f19
Kaydet (Commit)
a4b48f19
authored
Eki 12, 2018
tarafından
Zackery Spytz
Kaydeden (comit)
Serhiy Storchaka
Eki 12, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-34940: Fix the error handling in _check_for_legacy_statements(). (GH-9764)
üst
859c068e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
8 deletions
+18
-8
exceptions.c
Objects/exceptions.c
+18
-8
No files found.
Objects/exceptions.c
Dosyayı görüntüle @
a4b48f19
...
...
@@ -2906,7 +2906,7 @@ _check_for_legacy_statements(PySyntaxErrorObject *self, Py_ssize_t start)
*/
static
PyObject
*
print_prefix
=
NULL
;
static
PyObject
*
exec_prefix
=
NULL
;
Py_ssize_t
text_len
=
PyUnicode_GET_LENGTH
(
self
->
text
);
Py_ssize_t
text_len
=
PyUnicode_GET_LENGTH
(
self
->
text
)
,
match
;
int
kind
=
PyUnicode_KIND
(
self
->
text
);
void
*
data
=
PyUnicode_DATA
(
self
->
text
);
...
...
@@ -2929,9 +2929,12 @@ _check_for_legacy_statements(PySyntaxErrorObject *self, Py_ssize_t start)
return
-
1
;
}
}
if
(
PyUnicode_Tailmatch
(
self
->
text
,
print_prefix
,
start
,
text_len
,
-
1
))
{
match
=
PyUnicode_Tailmatch
(
self
->
text
,
print_prefix
,
start
,
text_len
,
-
1
);
if
(
match
==
-
1
)
{
return
-
1
;
}
if
(
match
)
{
return
_set_legacy_print_statement_msg
(
self
,
start
);
}
...
...
@@ -2942,10 +2945,17 @@ _check_for_legacy_statements(PySyntaxErrorObject *self, Py_ssize_t start)
return
-
1
;
}
}
if
(
PyUnicode_Tailmatch
(
self
->
text
,
exec_prefix
,
start
,
text_len
,
-
1
))
{
Py_XSETREF
(
self
->
msg
,
PyUnicode_FromString
(
"Missing parentheses in call to 'exec'"
));
match
=
PyUnicode_Tailmatch
(
self
->
text
,
exec_prefix
,
start
,
text_len
,
-
1
);
if
(
match
==
-
1
)
{
return
-
1
;
}
if
(
match
)
{
PyObject
*
msg
=
PyUnicode_FromString
(
"Missing parentheses in call "
"to 'exec'"
);
if
(
msg
==
NULL
)
{
return
-
1
;
}
Py_XSETREF
(
self
->
msg
,
msg
);
return
1
;
}
/* Fall back to the default error message */
...
...
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