This file is indexed.

/usr/lib/python3/dist-packages/qtpy/QtMultimedia.py is in python3-qtpy 1.2.1-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
from . import PYQT5
from . import PYQT4
from . import PYSIDE


if PYQT5:
    from PyQt5.QtMultimedia import *
elif PYQT4:
    from PyQt4.QtMultimedia import *
    from PyQt4.QtGui import QSound
elif PYSIDE:
    from PySide.QtMultimedia import *
    from PySide.QtGui import QSound