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
09ccc3a2
Kaydet (Commit)
09ccc3a2
authored
Mar 21, 2001
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Test that traceback module works with SyntaxErrors with or without carets.
üst
ed9d0ba4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
0 deletions
+43
-0
nocaret.py
Lib/test/nocaret.py
+2
-0
test_traceback
Lib/test/output/test_traceback
+1
-0
test_traceback.py
Lib/test/test_traceback.py
+40
-0
No files found.
Lib/test/nocaret.py
0 → 100644
Dosyayı görüntüle @
09ccc3a2
def
f
(
x
):
[
x
for
x
in
x
]
=
x
Lib/test/output/test_traceback
0 → 100644
Dosyayı görüntüle @
09ccc3a2
test_traceback
Lib/test/test_traceback.py
0 → 100644
Dosyayı görüntüle @
09ccc3a2
"""Test cases for traceback module"""
import
unittest
from
test_support
import
run_unittest
import
traceback
class
TracebackCases
(
unittest
.
TestCase
):
# For now, a very minimal set of tests. I want to be sure that
# formatting of SyntaxErrors works based on changes for 2.1.
def
get_exception_format
(
self
,
func
,
exc
):
try
:
func
()
except
exc
,
value
:
return
traceback
.
format_exception_only
(
exc
,
value
)
else
:
raise
ValueError
,
"call did not raise exception"
def
syntax_error_with_caret
(
self
):
compile
(
"def fact(x):
\n\t
return x!
\n
"
,
"?"
,
"exec"
)
def
syntax_error_without_caret
(
self
):
# XXX why doesn't compile raise the same traceback?
import
nocaret
def
test_caret
(
self
):
err
=
self
.
get_exception_format
(
self
.
syntax_error_with_caret
,
SyntaxError
)
self
.
assert_
(
len
(
err
)
==
4
)
self
.
assert_
(
"^"
in
err
[
2
])
# third line has caret
self
.
assert_
(
err
[
1
]
.
strip
()
==
"return x!"
)
def
test_nocaret
(
self
):
err
=
self
.
get_exception_format
(
self
.
syntax_error_without_caret
,
SyntaxError
)
self
.
assert_
(
len
(
err
)
==
3
)
self
.
assert_
(
err
[
1
]
.
strip
()
==
"[x for x in x] = x"
)
run_unittest
(
TracebackCases
)
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