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
938045f3
Kaydet (Commit)
938045f3
authored
Tem 21, 2018
tarafından
Bo Bayles
Kaydeden (comit)
Stefan Krah
Tem 21, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-34179: Make sure decimal context doesn't affect other tests. (#8376)
üst
56868f94
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
test_time.py
Lib/test/test_time.py
+13
-13
No files found.
Lib/test/test_time.py
Dosyayı görüntüle @
938045f3
...
...
@@ -872,19 +872,19 @@ class CPyTimeTestCase:
ns_timestamps
=
self
.
_rounding_values
(
use_float
)
valid_values
=
convert_values
(
ns_timestamps
)
for
time_rnd
,
decimal_rnd
in
ROUNDING_MODES
:
context
=
decimal
.
getcontext
()
context
.
rounding
=
decimal_rnd
for
value
in
valid_values
:
debug_info
=
{
'value'
:
value
,
'rounding'
:
decimal_rnd
}
try
:
result
=
pytime_converter
(
value
,
time_rnd
)
expected
=
expected_func
(
value
)
except
Exception
as
exc
:
self
.
fail
(
"Error on timestamp conversion:
%
s"
%
debug_info
)
self
.
assertEqual
(
result
,
expected
,
debug_info
)
with
decimal
.
localcontext
()
as
context
:
context
.
rounding
=
decimal_rnd
for
value
in
valid_values
:
debug_info
=
{
'value'
:
value
,
'rounding'
:
decimal_rnd
}
try
:
result
=
pytime_converter
(
value
,
time_rnd
)
expected
=
expected_func
(
value
)
except
Exception
as
exc
:
self
.
fail
(
"Error on timestamp conversion:
%
s"
%
debug_info
)
self
.
assertEqual
(
result
,
expected
,
debug_info
)
# test overflow
ns
=
self
.
OVERFLOW_SECONDS
*
SEC_TO_NS
...
...
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