Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /usr/lib/python2.7/dist-packages/twisted/ |
Upload File : |
# -*- test-case-name: twisted -*- # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Twisted: The Framework Of Your Internet. """ def _checkRequirements(): # Don't allow the user to run a version of Python we don't support. import sys version = getattr(sys, "version_info", (0,)) if version < (2, 7): raise ImportError("Twisted requires Python 2.7 or later.") elif version >= (3, 0) and version < (3, 3): raise ImportError("Twisted on Python 3 requires Python 3.3 or later.") if version < (3, 0): required = "3.6.0" else: required = "4.0.0" if ("setuptools" in sys.modules and getattr(sys.modules["setuptools"], "_TWISTED_NO_CHECK_REQUIREMENTS", None) is not None): # Skip requirement checks, setuptools ought to take care of installing # the dependencies. return # Don't allow the user to run with a version of zope.interface we don't # support. required = "Twisted requires zope.interface %s or later" % (required,) try: from zope import interface except ImportError: # It isn't installed. raise ImportError(required + ": no module named zope.interface.") except: # It is installed but not compatible with this version of Python. raise ImportError(required + ".") try: # Try using the API that we need, which only works right with # zope.interface 3.6 (or 4.0 on Python 3) class IDummy(interface.Interface): pass @interface.implementer(IDummy) class Dummy(object): pass except TypeError: # It is installed but not compatible with this version of Python. raise ImportError(required + ".") _checkRequirements() # Ensure compat gets imported from twisted.python import compat # setup version from twisted._version import version __version__ = version.short() del compat