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
b52a74b5
Kaydet (Commit)
b52a74b5
authored
May 11, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#2816: clarify error messages for EOF while scanning strings.
üst
6a57c08d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
test_eof.py
Lib/test/test_eof.py
+3
-2
pythonrun.c
Python/pythonrun.c
+2
-2
No files found.
Lib/test/test_eof.py
Dosyayı görüntüle @
b52a74b5
...
...
@@ -6,7 +6,7 @@ from test import test_support
class
EOFTestCase
(
unittest
.
TestCase
):
def
test_EOFC
(
self
):
expect
=
"EOL while scanning s
ingle-quoted string
(<string>, line 1)"
expect
=
"EOL while scanning s
tring literal
(<string>, line 1)"
try
:
eval
(
"""'this is a test
\
"""
)
...
...
@@ -16,7 +16,8 @@ class EOFTestCase(unittest.TestCase):
raise
test_support
.
TestFailed
def
test_EOFS
(
self
):
expect
=
"EOF while scanning triple-quoted string (<string>, line 1)"
expect
=
(
"EOF while scanning triple-quoted string literal "
"(<string>, line 1)"
)
try
:
eval
(
"""'''this is a test"""
)
except
SyntaxError
,
msg
:
...
...
Python/pythonrun.c
Dosyayı görüntüle @
b52a74b5
...
...
@@ -1500,10 +1500,10 @@ err_input(perrdetail *err)
msg
=
"invalid token"
;
break
;
case
E_EOFS
:
msg
=
"EOF while scanning triple-quoted string"
;
msg
=
"EOF while scanning triple-quoted string
literal
"
;
break
;
case
E_EOLS
:
msg
=
"EOL while scanning s
ingle-quoted string
"
;
msg
=
"EOL while scanning s
tring literal
"
;
break
;
case
E_INTR
:
if
(
!
PyErr_Occurred
())
...
...
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