This file is indexed.

/usr/lib/python3/dist-packages/libarchive/__init__.py is in python3-libarchive-c 2.1-3.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
# This file is part of a program licensed under the terms of the GNU Lesser
# General Public License version 2 (or at your option any later version)
# as published by the Free Software Foundation: http://www.gnu.org/licenses/


from .entry import ArchiveEntry
from .exception import ArchiveError
from .extract import extract_fd, extract_file, extract_memory
from .read import fd_reader, file_reader, memory_reader
from .write import custom_writer, fd_writer, file_writer, memory_writer

__all__ = [
    ArchiveEntry,
    ArchiveError,
    extract_fd, extract_file, extract_memory,
    fd_reader, file_reader, memory_reader,
    custom_writer, fd_writer, file_writer, memory_writer
]