This file is indexed.

/usr/share/pyshared/PIL/ImageGL.py is in python-imaging 1.1.7-4ubuntu0.12.04.3.

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
#
# The Python Imaging Library.
# $Id$
#
# OpenGL pixmap/texture interface (requires imToolkit OpenGL extensions)
#
# History:
# 2003-09-13 fl   Added
#
# Copyright (c) Secret Labs AB 2003.
#
# See the README file for information on usage and redistribution.
#

##
# OpenGL pixmap/texture interface (requires imToolkit OpenGL
# extensions.)
##

import _imaginggl

##
# Texture factory.

class TextureFactory:
    pass # overwritten by the _imaginggl module

from _imaginggl import *