• File: py34compat.py
  • Full Path: /home/masbinta/public_html/admin/installer/css/sass/sym404/root/opt/alt/python38/lib/python3.8/site-packages/setuptools/py34compat.py
  • File size: 245 bytes
  • MIME-type: text/x-python
  • Charset: utf-8
import importlib

try:
    import importlib.util
except ImportError:
    pass


try:
    module_from_spec = importlib.util.module_from_spec
except AttributeError:
    def module_from_spec(spec):
        return spec.loader.load_module(spec.name)