This file is indexed.

/usr/lib/python2.7/dist-packages/geneagrapher/graph/node.py is in geneagrapher 1.0c2+git20120704-2.

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
from record import Record

class Node:
    """
    Container class storing a node in the graph.
    """
    def __init__(self, record, ancestors, descendants):
        """
        Node class constructor.

        Parameters:
            record: instance of the Record class
            ancestors: list of the record's genealogical ancestors'
                IDs
            descendants: list of this record's genealogical
                descendants' IDs
        """

        self.record = record
        self.ancestors = ancestors
        self.descendants = descendants

        # Verify parameter types.
        if not isinstance(self.record, Record):
            raise TypeError("Unexpected parameter type: expected Record \
object for 'record'")
        if not isinstance(self.ancestors, set):
            raise TypeError("Unexpected parameter type: expected set object \
for 'ancestors'")
        if not isinstance(self.descendants, set):
            raise TypeError("Unexpected parameter type: expected set object \
for 'descendants'")

    def __unicode__(self):
        return self.record.__unicode__()

    def __cmp__(self, n2):
        return self.record.__cmp__(n2.record)

    def __hash__(self):
        return hash(self.get_id())

    def add_ancestor(self, ancestor):  # NOTE: is this used?
        """
        Add an ancestor id to the ancestor set.
        """
        # Verify we were passed an int.
        if not isinstance(ancestor, int):
            raise TypeError("Unexpected parameter type: expected int for \
'ancestor'")
        self.ancestors.add(ancestor)

    def get_id(self):
        """
        Accessor method to retrieve the id of this node's record.
        """
        return self.record.id

    def set_id(self, id):  # NOTE: is this used?
        """
        Sets the record id.
        """
        self.record.id = id