This file is indexed.

/usr/lib/python2.7/dist-packages/preggy/assertions/types/classes.py is in python-preggy 1.1.3-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
41
42
43
# -*- coding: utf-8 -*-
'''preggy instance assertions.  For use with `expect()` (see `preggy.core`).
'''

# preggy assertions
# https://github.com/heynemann/preggy

# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2013 Bernardo Heynemann heynemann@gmail.com

from __future__ import absolute_import
import inspect

from preggy import assertion


@assertion
def to_be_instance_of(topic, expected):
    '''Asserts that `topic` is an instance of `expected`.'''
    TRUE_CONDITIONS = (
        topic == expected,
        isinstance(topic, expected),
        (inspect.isclass(topic) and inspect.isclass(expected)) and issubclass(topic, expected),
    )
    if any(TRUE_CONDITIONS):
        return True
    msg = 'Expected topic({0}) to be an instance of {1}, but it was a {2}'.format(
        topic,
        expected,
        topic.__class__)
    raise AssertionError(msg)


@assertion
def not_to_be_instance_of(topic, expected):
    '''Asserts that `topic` is NOT an instance of `expected`.'''
    try:
        to_be_instance_of(topic, expected)
    except AssertionError:
        return True
    msg = 'Expected topic({0}) not to be an instance of {1}'.format(topic, expected)
    raise AssertionError(msg)