This file is indexed.

/usr/lib/python3/dist-packages/zope.fixers-1.0.egg-info/PKG-INFO is in python3-zope.fixers 1.0-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
Metadata-Version: 1.0
Name: zope.fixers
Version: 1.0
Summary: 2to3 fixers for Zope
Home-page: http://svn.zope.org/zope.fixers/
Author: Lennart Regebro
Author-email: regebro@gmail.com
License: ZPL
Description: Introduction
        ============
        
        Fixers for Zope Component Architecture and the frameworks built with it.
        
        Currently, there is only one fixer, fix_implements. This fixer will change
        all uses of implements(IFoo) in a class body to the class decorator
        @implementer(IFoo), which is the most likely Python 3 syntax for 
        zope.interfaces implements statements.
        
        zope.fixers requires Python 3.1.
        
        
        Usage
        -----
        
        To use this you typically want all teh fixers from lib2to3, and add the
        fixers from zope.fixers to it. Like so:
        
            >>> from lib2to3.refactor import RefactoringTool, get_fixers_from_package
            >>> fixers = get_fixers_from_package('lib2to3.fixes') + \
            ...          get_fixers_from_package('zope.fixers')
        
        And the run the fixing with the fixers:
        
            >>> tool = RefactoringTool(fixers)
            >>> tool.refactor(files, write=True)
        
        For an example usage within setuptools, look at:
        
        http://svn.zope.org/zope.interface/branches/regebro-python3/build_ext_3.py?rev=98993&view=markup
        
        
        Changelog
        =========
        
        1.0 - Unreleased
        ----------------
        
        * Initial release
        
        
Keywords: 2to3 python3 zope
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules