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
076623bf
Kaydet (Commit)
076623bf
authored
Eki 31, 2010
tarafından
Brian Curtin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix ResourceWarning. Use context manager to properly close file.
üst
3ddcaafb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
11 deletions
+12
-11
test_float.py
Lib/test/test_float.py
+12
-11
No files found.
Lib/test/test_float.py
Dosyayı görüntüle @
076623bf
...
...
@@ -540,17 +540,18 @@ class FormatTestCase(unittest.TestCase):
@requires_IEEE_754
def
test_format_testfile
(
self
):
for
line
in
open
(
format_testfile
):
if
line
.
startswith
(
'--'
):
continue
line
=
line
.
strip
()
if
not
line
:
continue
lhs
,
rhs
=
map
(
str
.
strip
,
line
.
split
(
'->'
))
fmt
,
arg
=
lhs
.
split
()
self
.
assertEqual
(
fmt
%
float
(
arg
),
rhs
)
self
.
assertEqual
(
fmt
%
-
float
(
arg
),
'-'
+
rhs
)
with
open
(
format_testfile
)
as
testfile
:
for
line
in
testfile
:
if
line
.
startswith
(
'--'
):
continue
line
=
line
.
strip
()
if
not
line
:
continue
lhs
,
rhs
=
map
(
str
.
strip
,
line
.
split
(
'->'
))
fmt
,
arg
=
lhs
.
split
()
self
.
assertEqual
(
fmt
%
float
(
arg
),
rhs
)
self
.
assertEqual
(
fmt
%
-
float
(
arg
),
'-'
+
rhs
)
def
test_issue5864
(
self
):
self
.
assertEquals
(
format
(
123.456
,
'.4'
),
'123.5'
)
...
...
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