/usr/lib/python2.7/dist-packages/gi/pygtkcompat.py is in python-gi 3.26.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 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | from __future__ import absolute_import
import warnings
from gi import PyGIDeprecationWarning
warnings.warn('gi.pygtkcompat is being deprecated in favor of using "pygtkcompat" directly.',
PyGIDeprecationWarning)
# pyflakes.ignore
from pygtkcompat import (enable,
enable_gtk,
enable_vte,
enable_poppler,
enable_webkit,
enable_gudev,
enable_gst,
enable_goocanvas)
__all__ = ['enable',
'enable_gtk',
'enable_vte',
'enable_poppler',
'enable_webkit',
'enable_gudev',
'enable_gst',
'enable_goocanvas']
|