#2365: [patch] models.FloatField should be renamed -------------------------------+-------------------------------------------- Reporter: [EMAIL PROTECTED] | Owner: adrian Type: defect | Status: new Priority: normal | Milestone: Component: Database wrapper | Version: Severity: normal | Resolution: Keywords: | -------------------------------+-------------------------------------------- Comment (by anonymous):
What about simply distribuite the module {{{decimal.py}}} in {{{django.utils}}}, as we already do for, i.e., threading? {{{ try: # Only exists in Python 2.4+ from decimal import Decimal except ImportError: # Import copy of _decimal.py from Python 2.4 from django.utils._decimal import Decimal }}} Decimal is just a single python file. See [http://www.taniquetil.com.ar/facundo/bdvfiles/get_decimal.html# downloading-the-files-separately] -- Ticket URL: <http://code.djangoproject.com/ticket/2365> Django <http://code.djangoproject.org/> The web framework for perfectionists with deadlines. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-updates@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates -~----------~----~----~----~------~----~------~--~---