1
0
mirror of https://github.com/django/django.git synced 2025-05-04 22:17:34 +00:00
django/django/utils/unittest.py
2013-07-01 22:46:35 +02:00

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 *