This file is indexed.

/usr/lib/python3/dist-packages/IPython/testing/plugin/test_exampleip.txt is in python3-ipython 5.5.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
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
=================================
 Tests in example form - IPython
=================================

You can write text files with examples that use IPython prompts (as long as you
use the nose ipython doctest plugin), but you can not mix and match prompt
styles in a single file.  That is, you either use all ``>>>`` prompts or all
IPython-style prompts.  Your test suite *can* have both types, you just need to
put each type of example in a separate. Using IPython prompts, you can paste
directly from your session::

    In [5]: s="Hello World"

    In [6]: s.upper()
    Out[6]: 'HELLO WORLD'

Another example::

    In [8]: 1+3
    Out[8]: 4

Just like in IPython docstrings, you can use all IPython syntax and features::

    In [9]: !echo "hello"
    hello

    In [10]: a='hi'

    In [11]: !echo $a
    hi