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:
Jannis Leidel 2011-05-06 19:49:06 +00:00
parent 8f3e1c1c63
commit b0d274dbd5
9 changed files with 9 additions and 0 deletions

View File

@ -1,4 +1,5 @@
# coding: utf-8 # coding: utf-8
from __future__ import with_statement
import re import re
import datetime import datetime

View File

@ -1,4 +1,5 @@
# encoding: utf-8 # encoding: utf-8
from __future__ import with_statement
from datetime import datetime from datetime import datetime

View File

@ -1,4 +1,5 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import with_statement
import datetime import datetime
from django.test import TestCase from django.test import TestCase
from django.utils import unittest, translation from django.utils import unittest, translation

View File

@ -1,4 +1,5 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import with_statement
from django.forms import * from django.forms import *
from django.utils.unittest import TestCase from django.utils.unittest import TestCase
from django.utils.translation import ugettext_lazy, override from django.utils.translation import ugettext_lazy, override

View File

@ -1,3 +1,4 @@
from __future__ import with_statement
from datetime import timedelta, date, datetime, tzinfo, timedelta from datetime import timedelta, date, datetime, tzinfo, timedelta
from django.conf import settings from django.conf import settings

View File

@ -1,4 +1,5 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
from __future__ import with_statement
import datetime import datetime
import decimal import decimal
import os import os

View File

@ -1,3 +1,4 @@
from __future__ import with_statement
from django.conf import settings from django.conf import settings
from django.test import TestCase from django.test import TestCase

View File

@ -1,4 +1,5 @@
# coding: utf-8 # coding: utf-8
from __future__ import with_statement
from django.test import TestCase from django.test import TestCase
from django.utils.text import * from django.utils.text import *

View File

@ -1,4 +1,5 @@
# -*- coding:utf-8 -*- # -*- coding:utf-8 -*-
from __future__ import with_statement
import gettext import gettext
from os import path from os import path