#28730: Large integer literals lose precision in templates
-------------------------------------------+------------------------
               Reporter:  Fraser Nevett    |          Owner:  nobody
                   Type:  Uncategorized    |         Status:  new
              Component:  Template system  |        Version:  1.11
               Severity:  Normal           |       Keywords:
           Triage Stage:  Unreviewed       |      Has patch:  0
    Needs documentation:  0                |    Needs tests:  0
Patch needs improvement:  0                |  Easy pickings:  0
                  UI/UX:  0                |
-------------------------------------------+------------------------
 While looking at #28721, I realised that there is loss of precision on
 large integer literals:

 {{{
 #!python
 >>> from django.template import Template, Context
 >>> Template('{{ 999999999999999999999999999 }}').render(Context())
 u'1000000000000000013287555072'
 }}}

 This happens because the code tries to first convert literal values to a
 **float** and then from the **float** to an **int**, which is a lossy
 operation.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/28730>
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/050.e8244771838b38005143c758233b6290%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to