This file is indexed.

/usr/lib/python3/dist-packages/leather/shapes/line.py is in python3-leather 0.3.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/usr/bin/env python

import xml.etree.ElementTree as ET

import six

from leather.data_types import Text
from leather.series import CategorySeries
from leather.shapes.base import Shape
from leather import theme
from leather.utils import X, Y


class Line(Shape):
    """
    Render a series of data as a line.

    :param stroke_color:
        The color to stroke the lines. If not provided, default chart colors
        will be used.
    :param width:
        The width of the lines. Defaults to :data:`.theme.default_line_width`.
    """
    def __init__(self, stroke_color=None, width=None):
        self._stroke_color = stroke_color
        self._width = width or theme.default_line_width

    def validate_series(self, series):
        """
        Verify this shape can be used to render a given series.
        """
        if isinstance(series, CategorySeries):
            raise ValueError('Line can not be used to render CategorySeries.')

        if series.data_type(X) is Text or series.data_type(Y) is Text:
            raise ValueError('Line does not support Text values.')

    def _new_path(self, stroke_color):
        """
        Start a new path.
        """
        path = ET.Element('path',
            stroke=stroke_color,
            fill='none'
        )
        path.set('stroke-width', six.text_type(self._width))

        return path

    def to_svg(self, width, height, x_scale, y_scale, series, palette):
        """
        Render lines to SVG elements.
        """
        group = ET.Element('g')
        group.set('class', 'series lines')

        if self._stroke_color:
            stroke_color = self._stroke_color
        else:
            stroke_color = next(palette)

        path = self._new_path(stroke_color)
        path_d = []

        for d in series.data():
            if d.x is None or d.y is None:
                if path_d:
                    path.set('d', ' '.join(path_d))
                    group.append(path)

                path_d = []
                path = self._new_path(stroke_color)

                continue

            proj_x = x_scale.project(d.x, 0, width)
            proj_y = y_scale.project(d.y, height, 0)

            if not path_d:
                command = 'M'
            else:
                command = 'L'

            path_d.extend([
                command,
                six.text_type(proj_x),
                six.text_type(proj_y)
            ])

        if path_d:
            path.set('d', ' '.join(path_d))
            group.append(path)

        return group