This file is indexed.

/usr/share/pyshared/lxml-2.3.2.egg-info/PKG-INFO is in python-lxml 2.3.2-1ubuntu0.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
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
Metadata-Version: 1.1
Name: lxml
Version: 2.3.2
Summary: Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
Home-page: http://lxml.de/
Author: lxml dev team
Author-email: lxml-dev@lxml.de
License: UNKNOWN
Download-URL: http://pypi.python.org/packages/source/l/lxml/lxml-2.3.2.tar.gz
Description: lxml is a Pythonic, mature binding for the libxml2 and libxslt libraries.  It
        provides safe and convenient access to these libraries using the ElementTree
        API.
        
        It extends the ElementTree API significantly to offer support for XPath,
        RelaxNG, XML Schema, XSLT, C14N and much more.
        
        To contact the project, go to the `project home page
        <http://lxml.de/>`_ or see our bug tracker at
        https://launchpad.net/lxml
        
        In case you want to use the current in-development version of lxml,
        you can get it from the github repository at
        https://github.com/lxml/lxml .  Note that this requires Cython to
        build the sources, see the build instructions on the project home
        page.  To the same end, running ``easy_install lxml==dev`` will
        install lxml from
        https://github.com/lxml/lxml/tarball/master#egg=lxml-dev if you have
        an appropriate version of Cython installed.
        
        
        After an official release of a new stable series, bug fixes may become
        available at
        https://github.com/lxml/lxml/tree/lxml-2.3 .
        Running ``easy_install lxml==2.3bugfix`` will install
        the unreleased branch state from
        https://github.com/lxml/lxml/tarball/lxml-2.3#egg=lxml-2.3bugfix
        as soon as a maintenance branch has been established.  Note that this
        requires Cython to be installed at an appropriate version for the build.
        
        2.3.2 (2011-11-11)
        ==================
        
        Features added
        --------------
        
        * ``lxml.objectify.deannotate()`` has a new boolean option
          ``cleanup_namespaces`` to remove the objectify namespace
          declarations (and generally clean up the namespace declarations)
          after removing the type annotations.
        
        * ``lxml.objectify`` gained its own ``SubElement()`` function as a
          copy of ``etree.SubElement`` to avoid an otherwise redundant import
          of ``lxml.etree`` on the user side.
        
        Bugs fixed
        ----------
        
        * Fixed the "descendant" bug in cssselect a second time (after a first
          fix in lxml 2.3.1).  The previous change resulted in a serious
          performance regression for the XPath based evaluation of the
          translated expression.  Note that this breaks the usage of some of
          the generated XPath expressions as XSLT location paths that
          previously worked in 2.3.1.
        
        * Fixed parsing of some selectors in cssselect. Whitespace after combinators
          ">", "+" and "~" is now correctly ignored. Previously is was parsed as
          a descendant combinator. For example, "div> .foo" was parsed the same as
          "div>* .foo" instead of "div>.foo".
        
        Other changes
        --------------
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: C
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: Topic :: Text Processing :: Markup :: XML
Classifier: Topic :: Software Development :: Libraries :: Python Modules