This file is indexed.

/usr/share/pyshared/rope-0.9.2.egg-info is in python-rope 0.9.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
Metadata-Version: 1.0
Name: rope
Version: 0.9.2
Summary: a python refactoring library...
Home-page: http://rope.sf.net/
Author: Ali Gholami Rudi
Author-email: aligrudi@users.sourceforge.net
License: GNU GPL
Description: 
        ========================================
        rope, a python refactoring library ...
        ========================================
        
        
        Overview
        ========
        
        `Rope`_ is a python refactoring library.
        
        .. _`rope`: http://rope.sf.net/
        
        
        New Features
        ============
        
        * caching all sub-modules of a module in `rope.contrib.autoimport`
        * fix recursion when creating modules
        * added basic support for setuptools
        * extract method handles conditional variable updates
        * added `rope.contrib.codeassist.CompletionProposal.parameters`
        
        The `rope.contrib.autoimport.AutoImport.generate_module_cache()` has
        been changed to handle module names that end with ``.*``.  Now one can
        use ``rope.*`` to mean `rope` and all of its sub-modules.
        
        Extract method now handles variable updates better.  For instance in::
        
        def f(a):
        if 0:
        a = 1
        print(a)
        
        When extracting the first two lines of `f()`, `a` should be passed to
        `g()`.  Although these lines don't read `a`, if the conditional write
        (like in ``if`` or ``while`` blocks) does not happen, it results in an
        error.  So the outcome will be::
        
        def f(a):
        a = g(a)
        print(a)
        
        def g(a):
        if 0:
        a = 1
        return a
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Environment :: X11 Applications
Classifier: Environment :: Win32 (MS Windows)
Classifier: Environment :: MacOS X
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development