aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'rest_framework/tests/__init__.py')
-rw-r--r--rest_framework/tests/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/rest_framework/tests/__init__.py b/rest_framework/tests/__init__.py
index ba3a27c0..85ee18b6 100644
--- a/rest_framework/tests/__init__.py
+++ b/rest_framework/tests/__init__.py
@@ -7,6 +7,4 @@ modules = [filename.rsplit('.', 1)[0]
__test__ = dict()
for module in modules:
- exec("from rest_framework.tests.%s import __doc__ as module_doc" % module)
exec("from rest_framework.tests.%s import *" % module)
- __test__[module] = module_doc or ""