This file is indexed.

/usr/share/pyshared/tracing-0.6.egg-info is in python-tracing 0.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
Metadata-Version: 1.1
Name: tracing
Version: 0.6
Summary: debug log/trace messages
Home-page: http://liw.fi/tracing/
Author: Lars Wirzenius
Author-email: liw@liw.fi
License: UNKNOWN
Description: This library provides a function for logging debug messages.
        It is sometimes practical during software development to add a lot of 
        debugging log messages to a program, but having them enabled all the time 
        results in very large log files. Also, logging that much takes quite a 
        bit of time.
        
        This module provides a way to turn such debugging (or tracing) messages
        on and off, based on the filename they occur in. It is much faster than
        using `logging.Filter` to accomplish the same thing, which matters
        when code is run in production mode. The actual logging still happens
        using the `logging` library.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: System :: Logging