This file is indexed.

/usr/lib/python2.7/dist-packages/ldap/async.py is in python-ldap 3.0.0-1.

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
"""
ldap.asyncsearch - handle async LDAP search operations

See https://www.python-ldap.org/ for details.
"""
import warnings

from ldap.asyncsearch import *
from ldap.asyncsearch import __version__

warnings.warn(
    "'ldap.async module' is deprecated, import 'ldap.asyncsearch' instead.",
    DeprecationWarning,
    stacklevel=2
)