This file is indexed.

/usr/share/doc/python-sphinx-gallery-doc/html/_downloads/plot_strings.py is in python-sphinx-gallery-doc 0.1.13-1ubuntu1.

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
# -*- coding: utf-8 -*-
"""
Constrained Text output frame
=============================

This example captures the stdout and includes it in the
example. If output is too long it becomes automatically
framed into a text area.

"""

# Code source: Óscar Nájera
# License: BSD 3 clause

print('This is a long test Output\n' * 50)

####################################
# One line out

print('one line out')