Added missing future imports missed in r16167.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16169 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
8f3e1c1c63
commit
b0d274dbd5
|
@ -1,4 +1,5 @@
|
|||
# coding: utf-8
|
||||
from __future__ import with_statement
|
||||
|
||||
import re
|
||||
import datetime
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# encoding: utf-8
|
||||
from __future__ import with_statement
|
||||
|
||||
from datetime import datetime
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import with_statement
|
||||
import datetime
|
||||
from django.test import TestCase
|
||||
from django.utils import unittest, translation
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import with_statement
|
||||
from django.forms import *
|
||||
from django.utils.unittest import TestCase
|
||||
from django.utils.translation import ugettext_lazy, override
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
from __future__ import with_statement
|
||||
from datetime import timedelta, date, datetime, tzinfo, timedelta
|
||||
|
||||
from django.conf import settings
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
from __future__ import with_statement
|
||||
import datetime
|
||||
import decimal
|
||||
import os
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
from __future__ import with_statement
|
||||
from django.conf import settings
|
||||
from django.test import TestCase
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# coding: utf-8
|
||||
from __future__ import with_statement
|
||||
from django.test import TestCase
|
||||
|
||||
from django.utils.text import *
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# -*- coding:utf-8 -*-
|
||||
from __future__ import with_statement
|
||||
import gettext
|
||||
from os import path
|
||||
|
||||
|
|
Loading…
Reference in New Issue