Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
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
django
Commits
9d1a6957
Kaydet (Commit)
9d1a6957
authored
Kas 30, 2014
tarafından
Eric Rouleau
Kaydeden (comit)
Tim Graham
Ara 03, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #23935 -- Converted decimals to fixed point in utils.numberformat.format
üst
adacbd64
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
numberformat.py
django/utils/numberformat.py
+6
-1
test_numberformat.py
tests/utils_tests/test_numberformat.py
+12
-1
No files found.
django/utils/numberformat.py
Dosyayı görüntüle @
9d1a6957
from
decimal
import
Decimal
from
django.conf
import
settings
from
django.utils.safestring
import
mark_safe
from
django.utils
import
six
...
...
@@ -22,7 +24,10 @@ def format(number, decimal_sep, decimal_pos=None, grouping=0, thousand_sep='',
return
mark_safe
(
six
.
text_type
(
number
))
# sign
sign
=
''
str_number
=
six
.
text_type
(
number
)
if
isinstance
(
number
,
Decimal
):
str_number
=
'{:f}'
.
format
(
number
)
else
:
str_number
=
six
.
text_type
(
number
)
if
str_number
[
0
]
==
'-'
:
sign
=
'-'
str_number
=
str_number
[
1
:]
...
...
tests/utils_tests/test_numberformat.py
Dosyayı görüntüle @
9d1a6957
from
decimal
import
Decimal
from
sys
import
float_info
from
unittest
import
TestCase
from
django.utils.numberformat
import
format
as
nformat
from
sys
import
float_info
class
TestNumberFormat
(
TestCase
):
...
...
@@ -45,3 +47,12 @@ class TestNumberFormat(TestCase):
self
.
assertEqual
(
nformat
(
0
-
int_max
,
'.'
),
most_max
.
format
(
'-'
,
'8'
))
self
.
assertEqual
(
nformat
(
-
1
-
int_max
,
'.'
),
most_max
.
format
(
'-'
,
'9'
))
self
.
assertEqual
(
nformat
(
-
2
*
int_max
,
'.'
),
most_max2
.
format
(
'-'
))
def
test_decimal_numbers
(
self
):
self
.
assertEqual
(
nformat
(
Decimal
(
'1234'
),
'.'
),
'1234'
)
self
.
assertEqual
(
nformat
(
Decimal
(
'1234.2'
),
'.'
),
'1234.2'
)
self
.
assertEqual
(
nformat
(
Decimal
(
'1234'
),
'.'
,
decimal_pos
=
2
),
'1234.00'
)
self
.
assertEqual
(
nformat
(
Decimal
(
'1234'
),
'.'
,
grouping
=
2
,
thousand_sep
=
','
),
'1234'
)
self
.
assertEqual
(
nformat
(
Decimal
(
'1234'
),
'.'
,
grouping
=
2
,
thousand_sep
=
','
,
force_grouping
=
True
),
'12,34'
)
self
.
assertEqual
(
nformat
(
Decimal
(
'-1234.33'
),
'.'
,
decimal_pos
=
1
),
'-1234.3'
)
self
.
assertEqual
(
nformat
(
Decimal
(
'0.00000001'
),
'.'
,
decimal_pos
=
8
),
'0.00000001'
)
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