This file is indexed.

/usr/lib/python3/dist-packages/tap.py-2.2.egg-info/PKG-INFO is in python3-tap 2.2-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
 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
Metadata-Version: 1.1
Name: tap.py
Version: 2.2
Summary: Test Anything Protocol (TAP) tools
Home-page: https://github.com/python-tap/tappy
Author: Matt Layman
Author-email: matthewlayman@gmail.com
License: BSD
Description-Content-Type: UNKNOWN
Description: 
        tappy is a set of tools for working with the `Test Anything Protocol (TAP)
        <http://testanything.org/>`_, a line based test protocol for recording test
        data in a standard way.
        
        Follow tappy development on `GitHub <https://github.com/python-tap/tappy>`_.
        Developer documentation is on
        `Read the Docs <https://tappy.readthedocs.io/>`_.
        
        
        Releases
        ========
        
        Version 2.2, Released January 7, 2018
        -------------------------------------
        
        * Add support for Python 3.6.
        * Drop support for Python 3.3 (it is end-of-life).
        * Use Pipenv for managing development.
        * Switch to pytest as the development test runner.
        
        Version 2.1, Released September 23, 2016
        ----------------------------------------
        
        * Add ``Parser.parse_text`` to parse TAP
          provided as a string.
        
        Version 2.0, Released July 31, 2016
        -----------------------------------
        
        * Remove nose plugin.
          The plugin moved to the ``nose-tap`` distribution.
        * Remove pytest plugin.
          The plugin moved to the ``pytest-tap`` distribution.
        * Remove Pygments syntax highlighting plugin.
          The plugin was merged upstream directly into the Pygments project
          and is available without tappy.
        * Drop support for Python 2.6.
        
        Version 1.9, Released March 28, 2016
        ------------------------------------
        
        * ``TAPTestRunner`` has a ``set_header`` method
          to enable or disable test case header ouput in the TAP stream.
        * Add support for Python 3.5.
        * Perform continuous integration testing on OS X.
        * Drop support for Python 3.2.
        
        Version 1.8, Released November 30, 2015
        ---------------------------------------
        
        * The ``tappy`` TAP consumer can read a TAP stream
          directly from STDIN.
        * Tracebacks are included as diagnostic output
          for failures and errors.
        * The ``tappy`` TAP consumer has an alternative, shorter name
          of ``tap``.
        * The pytest plugin now defaults to no output
          unless provided a flag.
          Users dependent on the old default behavior
          can use ``--tap-files`` to achieve the same results.
        * Translated into Arabic.
        * Translated into Chinese.
        * Translated into Japanese.
        * Translated into Russian.
        * Perform continuous integration testing on Windows with AppVeyor.
        * Improve unit test coverage to 100%.
        
        Version 1.7, Released August 19, 2015
        -------------------------------------
        
        * Provide a plugin to integrate with pytest.
        * Document some viable alternatives to tappy.
        * Translated into German.
        * Translated into Portuguese.
        
        Version 1.6, Released June 18, 2015
        -----------------------------------
        
        * ``TAPTestRunner`` has a ``set_stream`` method to stream all TAP
          output directly to an output stream instead of a file.
          results in a single output file.
        * The ``nosetests`` plugin has an optional ``--tap-stream`` flag to
          stream all TAP output directly to an output stream instead of a file.
        * tappy is now internationalized. It is translated into Dutch, French,
          Italian, and Spanish.
        * tappy is available as a Python wheel package, the new Python packaging
          standard.
        
        Version 1.5, Released May 18, 2015
        ----------------------------------
        
        * ``TAPTestRunner`` has a ``set_combined`` method to collect all
          results in a single output file.
        * The ``nosetests`` plugin has an optional ``--tap-combined`` flag to
          collect all results in a single output file.
        * ``TAPTestRunner`` has a ``set_format`` method to specify line format.
        * The ``nosetests`` plugin has an optional ``--tap-format`` flag to specify
          line format.
        
        Version 1.4, Released April 4, 2015
        -----------------------------------
        
        * Update ``setup.py`` to support Debian packaging. Include man page.
        
        Version 1.3, Released January 9, 2015
        -------------------------------------
        
        * The ``tappy`` command line tool is available as a TAP consumer.
        * The ``Parser`` and ``Loader`` are available as APIs for programmatic
          handling of TAP files and data.
        
        Version 1.2, Released December 21, 2014
        ---------------------------------------
        
        * Provide a syntax highlighter for Pygments so any project using Pygments
          (e.g., Sphinx) can highlight TAP output.
        
        Version 1.1, Released October 23, 2014
        --------------------------------------
        
        * ``TAPTestRunner`` has a ``set_outdir`` method to specify where to store
          ``.tap`` files.
        * The ``nosetests`` plugin has an optional ``--tap-outdir`` flag to specify
          where to store ``.tap`` files.
        * tappy has backported support for Python 2.6.
        * tappy has support for Python 3.2, 3.3, and 3.4.
        * tappy has support for PyPy.
        
        Version 1.0, Released March 16, 2014
        ------------------------------------
        
        * Initial release of tappy
        * ``TAPTestRunner`` - A test runner for ``unittest`` modules that generates
          TAP files.
        * Provides a plugin for integrating with **nose**.
        
Keywords: TAP,unittest
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Testing