This file is indexed.

/usr/lib/python3/dist-packages/pytest_bdd/__init__.py is in python3-pytest-bdd 2.18.2-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
"""pytest-bdd public API."""

from pytest_bdd.steps import given, when, then
from pytest_bdd.scenario import scenario, scenarios

__version__ = '2.18.2'

__all__ = [given.__name__, when.__name__, then.__name__, scenario.__name__, scenarios.__name__]