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
d9223297
Kaydet (Commit)
d9223297
authored
Nis 12, 2011
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Neaten-up the fix to issue 11830
üst
4ded0c04
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
decimal.py
Lib/decimal.py
+11
-11
No files found.
Lib/decimal.py
Dosyayı görüntüle @
d9223297
...
...
@@ -1683,7 +1683,7 @@ class Decimal(object):
self
=
_dec_from_triple
(
self
.
_sign
,
'1'
,
exp_min
-
1
)
digits
=
0
rounding_method
=
self
.
_pick_rounding_function
[
context
.
rounding
]
changed
=
getattr
(
self
,
rounding_method
)(
digits
)
changed
=
rounding_method
(
self
,
digits
)
coeff
=
self
.
_int
[:
digits
]
or
'0'
if
changed
>
0
:
coeff
=
str
(
int
(
coeff
)
+
1
)
...
...
@@ -1790,14 +1790,14 @@ class Decimal(object):
return
-
self
.
_round_down
(
prec
)
_pick_rounding_function
=
dict
(
ROUND_DOWN
=
'_round_down'
,
ROUND_UP
=
'_round_up'
,
ROUND_HALF_UP
=
'_round_half_up'
,
ROUND_HALF_DOWN
=
'_round_half_down'
,
ROUND_HALF_EVEN
=
'_round_half_even'
,
ROUND_CEILING
=
'_round_ceiling'
,
ROUND_FLOOR
=
'_round_floor'
,
ROUND_05UP
=
'_round_05up'
,
ROUND_DOWN
=
_round_down
,
ROUND_UP
=
_round_up
,
ROUND_HALF_UP
=
_round_half_up
,
ROUND_HALF_DOWN
=
_round_half_down
,
ROUND_HALF_EVEN
=
_round_half_even
,
ROUND_CEILING
=
_round_ceiling
,
ROUND_FLOOR
=
_round_floor
,
ROUND_05UP
=
_round_05up
,
)
def
fma
(
self
,
other
,
third
,
context
=
None
):
...
...
@@ -2504,8 +2504,8 @@ class Decimal(object):
if
digits
<
0
:
self
=
_dec_from_triple
(
self
.
_sign
,
'1'
,
exp
-
1
)
digits
=
0
this_function
=
getattr
(
self
,
self
.
_pick_rounding_function
[
rounding
])
changed
=
this_function
(
digits
)
this_function
=
self
.
_pick_rounding_function
[
rounding
]
changed
=
this_function
(
self
,
digits
)
coeff
=
self
.
_int
[:
digits
]
or
'0'
if
changed
==
1
:
coeff
=
str
(
int
(
coeff
)
+
1
)
...
...
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