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
9e6ac83a
Kaydet (Commit)
9e6ac83a
authored
Mar 09, 2017
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Mar 09, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-29773: Add more cases for testing string to float conversion errors. (#580)
üst
0f6d7334
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
8 deletions
+20
-8
test_float.py
Lib/test/test_float.py
+20
-8
No files found.
Lib/test/test_float.py
Dosyayı görüntüle @
9e6ac83a
...
@@ -119,15 +119,27 @@ class GeneralFloatCases(unittest.TestCase):
...
@@ -119,15 +119,27 @@ class GeneralFloatCases(unittest.TestCase):
self
.
assertEqual
(
float
(
memoryview
(
b
'12.34'
)[
1
:
4
]),
2.3
)
self
.
assertEqual
(
float
(
memoryview
(
b
'12.34'
)[
1
:
4
]),
2.3
)
def
test_error_message
(
self
):
def
test_error_message
(
self
):
testlist
=
(
'
\xbd
'
,
'123
\xbd
'
,
' 123 456 '
)
def
check
(
s
):
for
s
in
testlist
:
with
self
.
assertRaises
(
ValueError
,
msg
=
'float(
%
r)'
%
(
s
,))
as
cm
:
try
:
float
(
s
)
float
(
s
)
except
ValueError
as
e
:
self
.
assertEqual
(
str
(
cm
.
exception
),
self
.
assertIn
(
s
.
strip
(),
e
.
args
[
0
])
'could not convert string to float:
%
r'
%
(
s
,))
else
:
self
.
fail
(
"Expected int(
%
r) to raise a ValueError"
,
s
)
check
(
'
\xbd
'
)
check
(
'123
\xbd
'
)
check
(
' 123 456 '
)
check
(
b
' 123 456 '
)
# non-ascii digits (error came from non-digit '!')
check
(
'
\u0663\u0661\u0664
!'
)
# embedded NUL
check
(
'123
\x00
'
)
check
(
'123
\x00
245'
)
check
(
'123
\x00
245'
)
# byte string with embedded NUL
check
(
b
'123
\x00
'
)
# non-UTF-8 byte string
check
(
b
'123
\xa0
'
)
@support.run_with_locale
(
'LC_NUMERIC'
,
'fr_FR'
,
'de_DE'
)
@support.run_with_locale
(
'LC_NUMERIC'
,
'fr_FR'
,
'de_DE'
)
def
test_float_with_comma
(
self
):
def
test_float_with_comma
(
self
):
...
...
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