Ticket #4445: python2.3-decimal.diff
File python2.3-decimal.diff, 499 bytes (added by , 17 years ago) |
---|
-
django/oldforms/__init__.py
782 782 try: 783 783 import decimal 784 784 except ImportError: 785 from django.utils import decimal785 from django.utils import _decimal as decimal 786 786 try: 787 787 return decimal.Decimal(data) 788 788 except decimal.InvalidOperation, e: