This file is indexed.

/usr/lib/python2.7/dist-packages/pywps/validator/mode.py is in python-pywps 4.0.0-3.

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
##################################################################
# Copyright 2016 OSGeo Foundation,                               #
# represented by PyWPS Project Steering Committee,               #
# licensed under MIT, Please consult LICENSE.txt for details     #
##################################################################

"""Validation modes
"""


class MODE():
    """Validation mode enumeration
    """
    NONE = 0
    SIMPLE = 1
    STRICT = 2
    VERYSTRICT = 3