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
6cbba50a
Kaydet (Commit)
6cbba50a
authored
Mar 10, 2004
tarafından
Neil Schemenauer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make test_coercion.py less sensitive to platform fp quirks. Closes
SF bug #678265.
üst
66d31f8f
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
4 deletions
+19
-4
test_coercion
Lib/test/output/test_coercion
+0
-0
test_coercion.py
Lib/test/test_coercion.py
+19
-4
No files found.
Lib/test/output/test_coercion
Dosyayı görüntüle @
6cbba50a
This diff is collapsed.
Click to expand it.
Lib/test/test_coercion.py
Dosyayı görüntüle @
6cbba50a
...
...
@@ -67,11 +67,26 @@ class MethodNumber:
candidates
=
[
2
,
4.0
,
2L
,
2
+
0
j
,
[
1
],
(
2
,),
None
,
MethodNumber
(
1
),
CoerceNumber
(
2
)]
MethodNumber
(
2
),
CoerceNumber
(
2
)]
infix_binops
=
[
'+'
,
'-'
,
'*'
,
'/'
,
'**'
,
'
%
'
]
prefix_binops
=
[
'divmod'
]
def
format_float
(
value
):
if
abs
(
value
)
<
0.01
:
return
'0.0'
else
:
return
'
%.1
f'
%
value
# avoid testing platform fp quirks
def
format_result
(
value
):
if
isinstance
(
value
,
complex
):
return
'(
%
s +
%
sj)'
%
(
format_float
(
value
.
real
),
format_float
(
value
.
imag
))
elif
isinstance
(
value
,
float
):
return
format_float
(
value
)
return
str
(
value
)
def
do_infix_binops
():
for
a
in
candidates
:
for
b
in
candidates
:
...
...
@@ -83,7 +98,7 @@ def do_infix_binops():
error
=
sys
.
exc_info
()[:
2
]
print
'...
%
s'
%
error
[
0
]
else
:
print
'='
,
x
print
'='
,
format_result
(
x
)
try
:
z
=
copy
.
copy
(
a
)
except
copy
.
Error
:
...
...
@@ -95,7 +110,7 @@ def do_infix_binops():
error
=
sys
.
exc_info
()[:
2
]
print
'...
%
s'
%
error
[
0
]
else
:
print
'=>'
,
z
print
'=>'
,
format_result
(
z
)
def
do_prefix_binops
():
for
a
in
candidates
:
...
...
@@ -108,7 +123,7 @@ def do_prefix_binops():
error
=
sys
.
exc_info
()[:
2
]
print
'...
%
s'
%
error
[
0
]
else
:
print
'='
,
x
print
'='
,
format_result
(
x
)
warnings
.
filterwarnings
(
"ignore"
,
r'complex divmod\(\), // and
%
are deprecated'
,
...
...
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