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
d61d860e
Kaydet (Commit)
d61d860e
authored
Kas 08, 2015
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #24802: Update test case for ValueError in 3.5
üst
b0deeb47
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
test_compile.py
Lib/test/test_compile.py
+2
-3
No files found.
Lib/test/test_compile.py
Dosyayı görüntüle @
d61d860e
...
...
@@ -545,10 +545,9 @@ if 1:
def
test_null_terminated
(
self
):
# The source code is null-terminated internally, but bytes-like
# objects are accepted, which could be not terminated.
# Exception changed from TypeError to ValueError in 3.5
with
self
.
assertRaisesRegex
(
Exception
,
"cannot contain null"
):
with
self
.
assertRaisesRegex
(
ValueError
,
"cannot contain null"
):
compile
(
"123
\x00
"
,
"<dummy>"
,
"eval"
)
with
self
.
assertRaisesRegex
(
Exception
,
"cannot contain null"
):
with
self
.
assertRaisesRegex
(
ValueError
,
"cannot contain null"
):
compile
(
memoryview
(
b
"123
\x00
"
),
"<dummy>"
,
"eval"
)
code
=
compile
(
memoryview
(
b
"123
\x00
"
)[
1
:
-
1
],
"<dummy>"
,
"eval"
)
self
.
assertEqual
(
eval
(
code
),
23
)
...
...
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