This file is indexed.

/usr/lib/python2.7/dist-packages/sfml/sf.py is in python-sfml 2.2~git20150611.196c88+dfsg-4build2.

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
""" A convenience module that imports all other modules.

    Example::

        from sfml import sf

        window = sf.RenderWindow(sf.VideoMode(w, h), "pySFML - Pong")
"""

from sfml.system import *
from sfml.window import *
from sfml.graphics import *
from sfml.audio import *
from sfml.network import *