Ticket #20145: ticket20145-2.diff
File ticket20145-2.diff, 456 bytes (added by , 12 years ago) |
---|
-
django/db/models/fields/__init__.py
diff --git a/django/db/models/fields/__init__.py b/django/db/models/fields/__init__.py index a925f0c..7283b14 100644
a b from __future__ import unicode_literals 2 2 3 3 import copy 4 4 import datetime 5 import decimal 5 try: 6 import cdecimal as decimal 7 except ImportError: 8 import decimal 6 9 import math 7 10 import warnings 8 11 from base64 import b64decode, b64encode