Sign in

ops / app-deployer · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • app-deployer
  • lib
  • python3.8
  • site-packages
  • setuptools
  • py34compat.py
  • add scripts
    6b4fb321
    root authored
    2021-12-14 04:48:12 +0000  
    Browse Files »
py34compat.py 245 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
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)