This file is indexed.

/usr/lib/python2.7/dist-packages/wsme/__init__.py is in python-wsme 0.8.0-2ubuntu2.

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
from wsme.api import signature
from wsme.rest import expose, validate
from wsme.root import WSRoot
from wsme.types import wsattr, wsproperty, Unset

__all__ = [
    'expose', 'validate', 'signature',
    'WSRoot',
    'wsattr', 'wsproperty', 'Unset'
]