This file is indexed.

/usr/lib/python2.7/dist-packages/preggy-1.1.3.egg-info/PKG-INFO is in python-preggy 1.1.3-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
Metadata-Version: 1.1
Name: preggy
Version: 1.1.3
Summary: preggy is an assertion library for Python. (What were you ``expect()``ing?)
Home-page: http://heynemann.github.io/preggy
Author: Zearin
Author-email: zearin@gonk.net
License: MIT
Download-URL: https://github.com/heynemann/preggy/releases/tag/1.1.3
Description: preggy is an assertion library for Python. (What were you ``expect()``ing?)
        
        
        EXAMPLE
        =======
        
            from preggy import expect
        
            def test_roses_are_red():
                rose = Rose()
                expect(rose.color).to_equal('red')
        
            def test_violets_are_not_red():
                violet = Violet()
                expect(violet.color).not_to_equal('red')
        
        
        For more info:
        http://heynemann.github.io/preggy
        
        
Keywords: test testing assert assertion library development
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Testing