mirror of
https://github.com/django/django.git
synced 2025-10-30 11:37:19 +00:00
11 lines
253 B
Python
11 lines
253 B
Python
from __future__ import absolute_import
|
|
|
|
import warnings
|
|
|
|
warnings.warn("django.utils.unittest will be removed in Django 1.9.",
|
|
PendingDeprecationWarning, stacklevel=2)
|
|
|
|
try:
|
|
from unittest2 import *
|
|
except ImportError:
|
|
from unittest import *
|