asda?‰PNG  IHDR ? f ??C1 sRGB ??é gAMA ±? üa pHYs ? ??o¨d GIDATx^íüL”÷e÷Y?a?("Bh?_ò???¢§?q5k?*:t0A-o??¥]VkJ¢M??f?±8\k2íll£1]q?ù???T __pycache__/__init__.cpython-36.pyc000064400000000161151030272020013127 0ustar003 uAc@sdS)Nrrr/usr/lib/python3.6/__init__.pys__pycache__/__init__.cpython-36.opt-1.pyc000064400000000161151030272020014066 0ustar003 uAc@sdS)Nrrr/usr/lib/python3.6/__init__.pys__pycache__/_glib.cpython-36.pyc000064400000001250151030272020012444 0ustar003 uAc\ @sdZddlmZddlZdddgZejeZdZxhedkrdejkrPejdZndejkrdejdZedkr2y ddl Z Wq2e k rddl Z Yq2Xq2Wx*eD]"Z e eekreee eee qWdS) zjThis module lets some other slip modules cooperate with either the glib or the gi.repository.GLib modules.)absolute_importNZMainLoopZ source_removeZ timeout_addzgi.repository.GLibglib)__doc__Z __future__rsys__all__modules__name___selfZ_modr ImportErrorZgi.repository.GLibZgiZwhatdirsetattrgetattrrr/usr/lib/python3.6/_glib.pys$           __pycache__/_glib.cpython-36.opt-1.pyc000064400000001250151030272020013403 0ustar003 uAc\ @sdZddlmZddlZdddgZejeZdZxhedkrdejkrPejdZndejkrdejdZedkr2y ddl Z Wq2e k rddl Z Yq2Xq2Wx*eD]"Z e eekreee eee qWdS) zjThis module lets some other slip modules cooperate with either the glib or the gi.repository.GLib modules.)absolute_importNZMainLoopZ source_removeZ timeout_addzgi.repository.GLibglib)__doc__Z __future__rsys__all__modules__name___selfZ_modr ImportErrorZgi.repository.GLibZgiZwhatdirsetattrgetattrrr/usr/lib/python3.6/_glib.pys$           _glib.py000064400000003134151030272020006163 0ustar00# -*- coding: utf-8 -*- # slip._wrappers._glib -- abstract (some) differences between glib and # gi.repository.GLib # # Copyright © 2012, 2015 Red Hat, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Authors: # Nils Philippsen """This module lets some other slip modules cooperate with either the glib or the gi.repository.GLib modules.""" from __future__ import absolute_import import sys __all__ = ['MainLoop', 'source_remove', 'timeout_add'] _self = sys.modules[__name__] _mod = None while _mod is None: if 'gi.repository.GLib' in sys.modules: _mod = sys.modules['gi.repository.GLib'] elif 'glib' in sys.modules: _mod = sys.modules['glib'] # if not yet imported, try to import glib first, then # gi.repository.GLib ... if _mod is None: try: import glib except ImportError: import gi.repository.GLib # ... then repeat. for what in __all__: if what not in dir(_self): setattr(_self, what, getattr(_mod, what)) __init__.py000064400000000000151030272020006633 0ustar00