This file is indexed.

/usr/lib/python3/dist-packages/lesscpy/plib/keyframe_selector.py is in python3-lesscpy 0.13.0+ds-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
44
45
46
47
48
49
# -*- coding: utf8 -*-
"""
.. module:: lesscpy.plib.keyframe_selector
    :synopsis: Keyframe selector node.

    Copyright (c)
    See LICENSE for details.
"""

from .node import Node


class KeyframeSelector(Node):
    """Keyframe selector node. Represents the keyframe selector in an animation
    sequence. Keyframes can be identified by the keywords "from" or "to", or by
    percentage.

    http://www.w3.org/TR/css3-animations/#keyframes
    """

    def parse(self, scope):
        """Parse node.
        args:
            scope (Scope): Current scope
        raises:
            SyntaxError
        returns:
            self
        """
        self.keyframe, = [e[0] if isinstance(e, tuple) else e
                          for e in self.tokens if str(e).strip()]
        self.subparse = False
        return self

    def copy(self):
        """ Return copy of self
        Returns:
            KeyframeSelector object
        """
        return KeyframeSelector(self.tokens, 0)

    def fmt(self, fills):
        """Format identifier
        args:
            fills (dict): replacements
        returns:
            str (CSS)
        """
        return self.keyframe