2013-07-02 04:28:45 +08:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2013-07-01 19:53:06 +08:00
|
|
|
import warnings
|
2010-10-11 20:55:17 +08:00
|
|
|
|
2014-02-27 05:48:20 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango19Warning
|
|
|
|
|
2013-07-01 19:53:06 +08:00
|
|
|
warnings.warn("django.utils.unittest will be removed in Django 1.9.",
|
2014-02-27 05:48:20 +08:00
|
|
|
RemovedInDjango19Warning, stacklevel=2)
|
2010-10-11 20:55:17 +08:00
|
|
|
|
2010-10-19 00:01:11 +08:00
|
|
|
try:
|
|
|
|
from unittest2 import *
|
|
|
|
except ImportError:
|
2013-07-01 19:53:06 +08:00
|
|
|
from unittest import *
|