support.py 259 B

12345678910
  1. from __future__ import absolute_import
  2. from future.standard_library import suspend_hooks
  3. from future.utils import PY3
  4. if PY3:
  5. from test.support import *
  6. else:
  7. __future_module__ = True
  8. with suspend_hooks():
  9. from test.test_support import *