This file is indexed.

/usr/lib/python3/dist-packages/smartypants-1.8.6.egg-info is in python3-smartypants 1.8.6-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
Metadata-Version: 1.1
Name: smartypants
Version: 1.8.6
Summary: Python with the SmartyPants
Home-page: https://bitbucket.org/livibetter/smartypants.py
Author: Yu-Jie Lin
Author-email: livibetter@gmail.com
License: BSD License
Description: smartypants
        ===========
        
        smartypants_ is a Python fork of SmartyPants__.
        
        .. _smartypants: https://bitbucket.org/livibetter/smartypants.py
        __ SmartyPantsPerl_
        .. _SmartyPantsPerl: http://daringfireball.net/projects/smartypants/
        
        
        Installation
        ------------
        
        To install it:
        
        .. code:: sh
        
          pip install smartypants
        
        
        Quick usage
        -----------
        
        To use it as a module:
        
        .. code:: python
        
          import smartypants
        
          text = '"SmartyPants" is smart, so is <code>smartypants</code> -- a Python port'
          print(smartypants.smartypants(text))
        
        To use the command-line script ``smartypants``:
        
        .. code:: sh
        
          echo '"SmartyPants" is smart, so is <code>smartypants</code> -- a Python port' | smartypants
        
        Both produce::
        
          &#8220;SmartyPants&#8221; is smart, so is <code>smartypants</code> &#8212; a Python port
        
        
        More information
        ----------------
        
        * Documentation_
        * `Source code`_
        * PyPI_
        
        .. _documentation: http://pythonhosted.org/smartypants/
        .. _Source code: smartypants_
        .. _PyPI: https://pypi.python.org/pypi/smartypants/
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Text Processing :: Filters