/usr/lib/python2.7/dist-packages/kombu/syn.py is in python-kombu 3.0.7-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | """
kombu.syn
=========
"""
from __future__ import absolute_import
import sys
__all__ = ['detect_environment']
_environment = None
def blocking(fun, *args, **kwargs):
    return fun(*args, **kwargs)
def select_blocking_method(type):
    pass
def _detect_environment():
    ## -eventlet-
    if 'eventlet' in sys.modules:
        try:
            from eventlet.patcher import is_monkey_patched as is_eventlet
            import socket
            if is_eventlet(socket):
                return 'eventlet'
        except ImportError:
            pass
    # -gevent-
    if 'gevent' in sys.modules:
        try:
            from gevent import socket as _gsocket
            import socket
            if socket.socket is _gsocket.socket:
                return 'gevent'
        except ImportError:
            pass
    return 'default'
def detect_environment():
    global _environment
    if _environment is None:
        _environment = _detect_environment()
    return _environment
 |