This file is indexed.

/usr/share/pyshared/unicodecsv-0.9.4.egg-info/PKG-INFO is in python-unicodecsv 0.9.4-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
Metadata-Version: 1.1
Name: unicodecsv
Version: 0.9.4
Summary: Python2's stdlib csv module is nice, but it doesn't support unicode. This module is a drop-in replacement which *does*.
Home-page: https://github.com/jdunck/python-unicodecsv
Author: Jeremy Dunck
Author-email: jdunck@gmail.com
License: BSD License
Description: unicodecsv
        ==========
        
        The unicodecsv is a drop-in replacement for Python 2's csv module which supports unicode strings without a hassle.
        
        More fully
        ----------
        
        Python 2's csv module doesn't easily deal with unicode strings, leading to the dreaded "'ascii' codec can't encode characters in position ..." exception.
        
        You can work around it by encoding everything just before calling write (or just after read), but why not add support to the serializer?
        
        ::
        
           >>> import unicodecsv
           >>> from cStringIO import StringIO
           >>> f = StringIO()
           >>> w = unicodecsv.writer(f, encoding='utf-8')
           >>> w.writerow((u'é', u'ñ'))
           >>> f.seek(0)
           >>> r = unicodecsv.reader(f, encoding='utf-8')
           >>> row = r.next()
           >>> print row[0], row[1]
           é ñ
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: Implementation :: CPython