1
0
mirror of https://github.com/django/django.git synced 2025-10-25 22:56:12 +00:00

Remove all relative imports. We have always been at war with relative imports.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17009 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Alex Gaynor
2011-10-18 00:47:49 +00:00
parent 66210cbc70
commit 396fcaaef9
40 changed files with 218 additions and 106 deletions

View File

@@ -10,8 +10,10 @@ TODO:
"This form field requires foo.js" and form.js_includes()
"""
from __future__ import absolute_import
from django.core.exceptions import ValidationError
from widgets import *
from fields import *
from forms import *
from models import *
from django.forms.fields import *
from django.forms.forms import *
from django.forms.models import *
from django.forms.widgets import *

View File

@@ -1 +1,3 @@
from widgets import *
from __future__ import absolute_import
from django.forms.extras.widgets import *