This file is indexed.

/usr/lib/python2.7/dist-packages/corsheaders/models.py is in python-django-cors-headers 2.1.0+github-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
from django.db import models


class AbstractCorsModel(models.Model):
    class Meta:
        abstract = True
        db_table = 'corsheaders_corsmodel'

    cors = models.CharField(max_length=255)