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

aroundthecode / multidict   python

Repository URL to install this package:

Version: 4.6.1 

/ _compat.py

import os
import platform

NO_EXTENSIONS = bool(os.environ.get("MULTIDICT_NO_EXTENSIONS"))

PYPY = platform.python_implementation() == "PyPy"

USE_CYTHON_EXTENSIONS = USE_CYTHON = not NO_EXTENSIONS and not PYPY

if USE_CYTHON_EXTENSIONS:
    try:
        from . import _multidict  # noqa
    except ImportError:
        USE_CYTHON_EXTENSIONS = USE_CYTHON = False