#29130: Floatformat is rounding off incorrectly.
-------------------------------------+-------------------------------------
               Reporter:  Akash      |          Owner:  nobody
  Deshpande                          |
                   Type:  Bug        |         Status:  new
              Component:  Template   |        Version:  1.11
  system                             |       Keywords:  template float
               Severity:  Normal     |  filter
           Triage Stage:             |      Has patch:  0
  Unreviewed                         |
    Needs documentation:  0          |    Needs tests:  0
Patch needs improvement:  0          |  Easy pickings:  0
                  UI/UX:  0          |
-------------------------------------+-------------------------------------
 I think the below changes broke/caused issues in floatformat

 
https://github.com/django/django/commit/12f7928f5a455e330c0a7f19bc86b37baca12811

 Easiest way to replicate the issue is
 1. Create a simple view with a template

 views.py
 \\
    def test(request):
         return render('test.html')


 test.html
 \\
          {{ 331.44999999999|floatformat:-1 }}

 The above should return 331.5, but returns 331.4. This changed in django
 1.11. (It returned 331.5 in django 1.8.X )

-- 
Ticket URL: <https://code.djangoproject.com/ticket/29130>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/052.fc3f751747935841d2bc206c9a00f867%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to