Fixed #14486 -- Modified the import order for the bundled unittest so that a locally installed unittest2 (which will have more features) will supersede the Python 2.7 native version. Thanks to Michael Foord for the suggestion.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14259 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2010-10-18 16:01:11 +00:00
parent 8cb4bf5ef8
commit f657079c70
1 changed files with 8 additions and 8 deletions

View File

@ -30,14 +30,14 @@ import sys
# Django hackery to load the appropriate version of unittest
if sys.version_info >= (2,7):
# unittest2 features are native in Python 2.7
from unittest import *
else:
try:
# check the system path first
from unittest2 import *
except ImportError:
try:
# check the system path first
from unittest2 import *
except ImportError:
if sys.version_info >= (2,7):
# unittest2 features are native in Python 2.7
from unittest import *
else:
# otherwise use our bundled version
__all__ = ['TestResult', 'TestCase', 'TestSuite',
'TextTestRunner', 'TestLoader', 'FunctionTestCase', 'main',