Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

reduction.py 192B

12345678910
  1. from __future__ import absolute_import
  2. import sys
  3. if sys.version_info[0] == 3:
  4. from .py3 import reduction
  5. else:
  6. from .py2 import reduction # noqa
  7. sys.modules[__name__] = reduction