This file is indexed.

/usr/include/openturns/swig/Description.i is in python-openturns-dev 1.2-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
// SWIG file Description.i
// @author schueller
// @date   2012-01-02 16:48:50 +0100 (Mon, 02 Jan 2012)

%{
#include "PythonWrappingFunctions.hxx"
#include "Description.hxx"
%}

%typemap(in) const Description & ($1_basetype temp) {
  if (! SWIG_IsOK(SWIG_ConvertPtr($input, (void **) &$1, $1_descriptor, 0))) {
    temp = OT::convert<OT::_PySequence_,OT::Description>( $input );
    $1 = &temp;
  }
}

%typemap(typecheck,precedence=SWIG_TYPECHECK_POINTER) const Description & {
  $1 = SWIG_IsOK(SWIG_ConvertPtr($input, NULL, $1_descriptor, 0)) ||
       OT::isAPythonSequenceOf<OT::_PyString_>( $input );
}

%apply const Description & { const OT::Description & };

%ignore OT::TypedCollectionInterfaceObject<OT::DescriptionImplementation>::getDimension() const;

%template(DescriptionImplementationTypedInterfaceObject)           OT::TypedInterfaceObject<OT::DescriptionImplementation>;
%template(DescriptionImplementationTypedCollectionInterfaceObject) OT::TypedCollectionInterfaceObject<OT::DescriptionImplementation>;
%include Description.hxx

namespace OT {  

%extend Description {

Description(const Description & other) { return new OT::Description(other); }

Description(PyObject * pyObj)
{
 OT::Pointer<OT::Collection<OT::String> > p_coll =  OT::buildCollectionFromPySequence<OT::String>( pyObj );
 return new OT::Description( *p_coll );
}

/* Method __len__() is for Python */
OT::UnsignedLong __len__() const
{
  return self->getSize();
}

/* Method __contains__() is for Python */
OT::Bool __contains__(const OT::String & val) const
{
  for (OT::UnsignedLong i=0; i<self->getSize(); ++i) if ( (*self)[i] == val ) return true;
  return false;
}

OT_COLLECTION_GETITEM(OT::Description, OT::String)
OT_COLLECTION_SETITEM(OT::Description, OT::String)

}

}