This file is indexed.

/usr/lib/pypy/dist-packages/sqlparse-0.1.13.egg-info is in pypy-sqlparse 0.1.13-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
Metadata-Version: 1.1
Name: sqlparse
Version: 0.1.13
Summary: Non-validating SQL parser
Home-page: https://github.com/andialbrecht/sqlparse
Author: Andi Albrecht
Author-email: albrecht.andi@gmail.com
License: BSD
Description: 
        ``sqlparse`` is a non-validating SQL parser module.
        It provides support for parsing, splitting and formatting SQL statements.
        
        Visit the `project page <https://github.com/andialbrecht/sqlparse>`_ for
        additional information and documentation.
        
        **Example Usage**
        
        
        Splitting SQL statements::
        
           >>> import sqlparse
           >>> sqlparse.split('select * from foo; select * from bar;')
           [u'select * from foo; ', u'select * from bar;']
        
        
        Formatting statemtents::
        
           >>> sql = 'select * from foo where id in (select id from bar);'
           >>> print sqlparse.format(sql, reindent=True, keyword_case='upper')
           SELECT *
           FROM foo
           WHERE id IN
             (SELECT id
              FROM bar);
        
        
        Parsing::
        
           >>> sql = 'select * from someschema.mytable where id = 1'
           >>> res = sqlparse.parse(sql)
           >>> res
           (<Statement 'select...' at 0x9ad08ec>,)
           >>> stmt = res[0]
           >>> unicode(stmt)  # converting it back to unicode
           u'select * from someschema.mytable where id = 1'
           >>> # This is how the internal representation looks like:
           >>> stmt.tokens
           (<DML 'select' at 0x9b63c34>,
            <Whitespace ' ' at 0x9b63e8c>,
            <Operator '*' at 0x9b63e64>,
            <Whitespace ' ' at 0x9b63c5c>,
            <Keyword 'from' at 0x9b63c84>,
            <Whitespace ' ' at 0x9b63cd4>,
            <Identifier 'somes...' at 0x9b5c62c>,
            <Whitespace ' ' at 0x9b63f04>,
            <Where 'where ...' at 0x9b5caac>)
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
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.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Database
Classifier: Topic :: Software Development