Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

hemamaps / billiard   python

Repository URL to install this package:

Version: 3.3.0.23 

/ reduction.py

from __future__ import absolute_import

import sys

if sys.version_info[0] == 3:
    from .py3 import reduction
else:
    from .py2 import reduction  # noqa

sys.modules[__name__] = reduction