This file is indexed.

/usr/lib/python2.7/dist-packages/odf/number.py is in python-odf 1.3.6-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
 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
 95
 96
 97
 98
 99
100
101
102
103
# -*- coding: utf-8 -*-
# Copyright (C) 2006-2007 Søren Roug, European Environment Agency
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
#
# Contributor(s):
#

from odf.namespaces import NUMBERNS
from odf.element import Element
from odf.style import StyleElement


# Autogenerated
def AmPm(**args):
    return Element(qname = (NUMBERNS,'am-pm'), **args)

def Boolean(**args):
    return Element(qname = (NUMBERNS,'boolean'), **args)

def BooleanStyle(**args):
    return StyleElement(qname = (NUMBERNS,'boolean-style'), **args)

def CurrencyStyle(**args):
    return StyleElement(qname = (NUMBERNS,'currency-style'), **args)

def CurrencySymbol(**args):
    return Element(qname = (NUMBERNS,'currency-symbol'), **args)

def DateStyle(**args):
    return StyleElement(qname = (NUMBERNS,'date-style'), **args)

def Day(**args):
    return Element(qname = (NUMBERNS,'day'), **args)

def DayOfWeek(**args):
    return Element(qname = (NUMBERNS,'day-of-week'), **args)

def EmbeddedText(**args):
    return Element(qname = (NUMBERNS,'embedded-text'), **args)

def Era(**args):
    return Element(qname = (NUMBERNS,'era'), **args)

def Fraction(**args):
    return Element(qname = (NUMBERNS,'fraction'), **args)

def Hours(**args):
    return Element(qname = (NUMBERNS,'hours'), **args)

def Minutes(**args):
    return Element(qname = (NUMBERNS,'minutes'), **args)

def Month(**args):
    return Element(qname = (NUMBERNS,'month'), **args)

def Number(**args):
    return Element(qname = (NUMBERNS,'number'), **args)

def NumberStyle(**args):
    return StyleElement(qname = (NUMBERNS,'number-style'), **args)

def PercentageStyle(**args):
    return StyleElement(qname = (NUMBERNS,'percentage-style'), **args)

def Quarter(**args):
    return Element(qname = (NUMBERNS,'quarter'), **args)

def ScientificNumber(**args):
    return Element(qname = (NUMBERNS,'scientific-number'), **args)

def Seconds(**args):
    return Element(qname = (NUMBERNS,'seconds'), **args)

def Text(**args):
    return Element(qname = (NUMBERNS,'text'), **args)

def TextContent(**args):
    return Element(qname = (NUMBERNS,'text-content'), **args)

def TextStyle(**args):
    return StyleElement(qname = (NUMBERNS,'text-style'), **args)

def TimeStyle(**args):
    return StyleElement(qname = (NUMBERNS,'time-style'), **args)

def WeekOfYear(**args):
    return Element(qname = (NUMBERNS,'week-of-year'), **args)

def Year(**args):
    return Element(qname = (NUMBERNS,'year'), **args)