mirror of
https://github.com/django/django.git
synced 2025-11-25 05:04:26 +00:00
Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds. Thanks to timo and claudep for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13094 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
7202eb8e31
commit
5211f48ae3
59 changed files with 32 additions and 3399 deletions
|
|
@ -28,6 +28,7 @@ import datetime
|
|||
import time
|
||||
import re
|
||||
import os
|
||||
from decimal import Decimal
|
||||
|
||||
from unittest import TestCase
|
||||
|
||||
|
|
@ -35,11 +36,6 @@ from django.core.files.uploadedfile import SimpleUploadedFile
|
|||
from django.forms import *
|
||||
from django.forms.widgets import RadioFieldRenderer
|
||||
|
||||
try:
|
||||
from decimal import Decimal
|
||||
except ImportError:
|
||||
from django.utils._decimal import Decimal
|
||||
|
||||
|
||||
def fix_os_paths(x):
|
||||
if isinstance(x, basestring):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue