This file is indexed.

/usr/lib/python3/dist-packages/libsmbios_c/_vars.py is in python3-libsmbios 2.4.1-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
16
17
18
19
20
21
22
23
24
# the purpose of this file is so we can run from the build tree.
# for installation, this is replaced with a better version.
import os

__all__ = ["__VERSION__", "GETTEXT_PACKAGE",
    "localedir", "pkgdatadir", "pythondir", "pkgconfdir", "libdir",
    "LIBSMBIOS_C_SONAME"
    ]

LIBSMBIOS_C_SONAME="libsmbios_c.so.2"

import libsmbios_c
_modpath = os.path.realpath(libsmbios_c.__path__[0])

# the following vars are all substituted on install
__VERSION__="2.4.1"
GETTEXT_PACKAGE="libsmbios-2.4-x86_64"
libdir="/usr/lib/x86_64-linux-gnu"
pythondir="/usr/lib/python3/dist-packages"
localedir="/usr/share/locale"
pkgdatadir="/usr/share/smbios-utils"
pkgconfdir="/etc/libsmbios"

# end vars