This file is indexed.

/usr/lib/python3/dist-packages/twisted/test/test_setup.py is in python3-twisted-experimental 13.2.0-0ubuntu1.

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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
Tests for C{setup.py}, Twisted's distutils integration file.
"""

from __future__ import division, absolute_import

import os, sys

import twisted
from twisted.trial.unittest import SynchronousTestCase
from twisted.python.filepath import FilePath
from twisted.python.dist import getExtensions

# Get rid of the UTF-8 encoding and bytes topfiles segment when FilePath
# supports unicode.  #2366, #4736, #5203.  Also #4743, which requires checking
# setup.py, not just the topfiles directory.
if not FilePath(twisted.__file__.encode('utf-8')).sibling(b'topfiles').child(b'setup.py').exists():
    sourceSkip = "Only applies to source checkout of Twisted"
else:
    sourceSkip = None


class TwistedExtensionsTests(SynchronousTestCase):
    if sourceSkip is not None:
        skip = sourceSkip

    def setUp(self):
        """
        Change the working directory to the parent of the C{twisted} package so
        that L{twisted.python.dist.getExtensions} finds Twisted's own extension
        definitions.
        """
        self.addCleanup(os.chdir, os.getcwd())
        os.chdir(FilePath(twisted.__file__).parent().parent().path)


    def test_initgroups(self):
        """
        If C{os.initgroups} is present (Python 2.7 and Python 3.3 and newer),
        L{twisted.python._initgroups} is not returned as an extension to build
        from L{getExtensions}.
        """
        extensions = getExtensions()
        found = None
        for extension in extensions:
            if extension.name == "twisted.python._initgroups":
                found = extension

        if sys.version_info[:2] >= (2, 7):
            self.assertIdentical(
                None, found,
                "Should not have found twisted.python._initgroups extension "
                "definition.")
        else:
            self.assertNotIdentical(
                None, found,
                "Should have found twisted.python._initgroups extension "
                "definition.")