This file is indexed.

/usr/lib/python2.7/dist-packages/lxml-3.4.0.egg-info/PKG-INFO is in python-lxml 3.4.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
 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
Metadata-Version: 1.1
Name: lxml
Version: 3.4.0
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-3.4.0.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-3.4 .
        Running ``easy_install lxml==3.4bugfix`` will install
        the unreleased branch state from
        https://github.com/lxml/lxml/tarball/lxml-3.4#egg=lxml-3.4bugfix
        as soon as a maintenance branch has been established.  Note that this
        requires Cython to be installed at an appropriate version for the build.
        
        3.4.0 (2014-09-10)
        ==================
        
        Features added
        --------------
        
        * ``xmlfile(buffered=False)`` disables output buffering and flushes the
          content after each API operation (starting/ending element blocks or writes).
          A new method ``xf.flush()`` can alternatively be used to explicitly flush
          the output.
        
        * ``lxml.html.document_fromstring`` has a new option ``ensure_head_body=True``
          which will add an empty head and/or body element to the result document if
          missing.
        
        * ``lxml.html.iterlinks`` now returns links inside meta refresh tags.
        
        * New ``XMLParser`` option ``collect_ids=False`` to disable ID hash table
          creation.  This can substantially speed up parsing of documents with many
          different IDs that are not used.
        
        * The parser uses per-document hash tables for XML IDs.  This reduces the
          load of the global parser dict and speeds up parsing for documents with
          many different IDs.
        
        * ``ElementTree.getelementpath(element)`` returns a structural ElementPath
          expression for the given element, which can be used for lookups later.
        
        * ``xmlfile()`` accepts a new argument ``close=True`` to close file(-like)
          objects after writing to them.  Before, ``xmlfile()`` only closed the file
          if it had opened it internally.
        
        * Allow "bytearray" type for ASCII text input.
        
        Bugs fixed
        ----------
        
        Other changes
        -------------
        
        * LP#400588: decoding errors have become hard errors even in recovery mode.
          Previously, they could lead to an internal tree representation in a mixed
          encoding state, which lead to very late errors or even silently incorrect
          behaviour during tree traversal or serialisation.
        
        * Requires Python 2.6, 2.7, 3.2 or later. No longer supports
          Python 2.4, 2.5 and 3.1, use lxml 3.3.x for those.
        
        * Requires libxml2 2.7.0 or later and libxslt 1.1.23 or later,
          use lxml 3.3.x with older versions.
        
        
        
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.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
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