This file is indexed.

/usr/lib/python2.7/dist-packages/M2Crypto/threading.py is in python-m2crypto 0.27.0-5.

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
from __future__ import absolute_import

"""
M2Crypto threading support, required for multithreaded applications.

Copyright (c) 1999-2003 Ng Pheng Siong. All rights reserved."""

# M2Crypto
from M2Crypto import m2


def init():
    # type: () -> None
    """
    Initialize threading support.
    """
    m2.threading_init()


def cleanup():
    # type: () -> None
    """
    End and cleanup threading support.
    """
    m2.threading_cleanup()