This file is indexed.

/usr/lib/python3/dist-packages/jupyter_core/tests/mocking.py is in python3-jupyter-core 4.2.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
"""General mocking utilities"""

# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.

import os
import sys

try:
    from unittest.mock import patch
except ImportError:
    from mock import patch # py2


class MultiPatch(object):
    def __init__(self, *patchers):
        self.patchers = patchers
    
    def __enter__(self):
        for p in self.patchers:
            p.start()
    
    def __exit__(self, *args):
        for p in self.patchers:
            p.stop()

darwin = MultiPatch(
    patch.object(os, 'name', 'posix'),
    patch.object(sys, 'platform', 'darwin'),
)

linux = MultiPatch(
    patch.object(os, 'name', 'posix'),
    patch.object(sys, 'platform', 'linux2'),
)

windows = MultiPatch(
    patch.object(os, 'name', 'nt'),
    patch.object(sys, 'platform', 'win32'),
)