Django

Code

Changeset 5398

Show
Ignore:
Timestamp:
05/31/07 20:44:47 (1 year ago)
Author:
mtredinnick
Message:

Fixed #4445 -- Fixed an import problem in one of the Python 2.3-only code
paths. Thanks, Bryan Chow.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/oldforms/__init__.py

    r5302 r5398  
    783783            import decimal  
    784784        except ImportError: 
    785             from django.utils import decimal 
     785            from django.utils import _decimal as decimal 
    786786        try:  
    787787            return decimal.Decimal(data)