This file is indexed.

/usr/lib/python2.7/dist-packages/openopt/solvers/CVXOPT/cvxopt_qp_oo.py is in python-openopt 0.38+svn1589-1.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
from openopt.kernel.baseSolver import baseSolver
from CVXOPT_QP_Solver import CVXOPT_QP_Solver

class cvxopt_qp(baseSolver):
    __name__ = 'cvxopt_qp'
    __license__ = "LGPL"
    __authors__ = "http://abel.ee.ucla.edu/cvxopt"
    __alg__ = "see http://abel.ee.ucla.edu/cvxopt"
    __optionalDataThatCanBeHandled__ = ['A', 'Aeq', 'b', 'beq', 'lb', 'ub']
    properTextOutput = True
    _canHandleScipySparse = True
    def __init__(self): pass
    def __solver__(self, p):
        return CVXOPT_QP_Solver(p, 'native_CVXOPT_QP_Solver')