mirror of
https://github.com/django/django.git
synced 2025-05-04 22:17:34 +00:00
12 lines
253 B
Python
12 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 *
|