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
8c913372
Kaydet (Commit)
8c913372
authored
Agu 15, 2002
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
forgot the best part - the new tests...
see patch 586561
üst
118ec70e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
test_eof.py
Lib/test/test_eof.py
+32
-0
No files found.
Lib/test/test_eof.py
0 → 100644
Dosyayı görüntüle @
8c913372
#! /usr/bin/env python
"""test script for a few new invalid token catches"""
import
os
import
unittest
from
test
import
test_support
class
EOFTestCase
(
unittest
.
TestCase
):
def
test_EOFC
(
self
):
try
:
eval
(
"""'this is a test
\
"""
)
except
SyntaxError
,
msg
:
self
.
assertEqual
(
str
(
msg
),
"EOL while scanning single-quoted string (line 1)"
)
else
:
raise
test_support
.
TestFailed
def
test_EOFS
(
self
):
try
:
eval
(
"""'''this is a test"""
)
except
SyntaxError
,
msg
:
self
.
assertEqual
(
str
(
msg
),
"EOF while scanning triple-quoted string (line 1)"
)
else
:
raise
test_support
.
TestFailed
def
test_main
():
test_support
.
run_unittest
(
EOFTestCase
)
if
__name__
==
"__main__"
:
test_main
()
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