This file is indexed.

/usr/share/pyshared/SoftLayer/consts.py is in python-softlayer 3.0.1-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
"""
    SoftLayer.consts
    ~~~~~~~~~~~~~~~~
    Contains constants used throughout the library

    :copyright: (c) 2013, SoftLayer Technologies, Inc. All rights reserved.
    :license: MIT, see LICENSE for more details.
"""
VERSION = 'v3.0.1'
API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3/'
API_PRIVATE_ENDPOINT = 'https://api.service.softlayer.com/xmlrpc/v3/'
API_PUBLIC_ENDPOINT_REST = 'https://api.softlayer.com/rest/v3/'
API_PRIVATE_ENDPOINT_REST = 'https://api.service.softlayer.com/rest/v3/'
USER_AGENT = "SoftLayer Python %s" % VERSION