summaryrefslogtreecommitdiffstats
path: root/FOSS/Python/Dependencies/future-0.18.2/src/future/moves/test/support.py
diff options
context:
space:
mode:
Diffstat (limited to 'FOSS/Python/Dependencies/future-0.18.2/src/future/moves/test/support.py')
-rw-r--r--FOSS/Python/Dependencies/future-0.18.2/src/future/moves/test/support.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/FOSS/Python/Dependencies/future-0.18.2/src/future/moves/test/support.py b/FOSS/Python/Dependencies/future-0.18.2/src/future/moves/test/support.py
deleted file mode 100644
index e9aa0f4..0000000
--- a/FOSS/Python/Dependencies/future-0.18.2/src/future/moves/test/support.py
+++ /dev/null
@@ -1,10 +0,0 @@
-from __future__ import absolute_import
-from future.standard_library import suspend_hooks
-from future.utils import PY3
-
-if PY3:
- from test.support import *
-else:
- __future_module__ = True
- with suspend_hooks():
- from test.test_support import *