karma-syndicate
Linux sh-pro80.hostgator.com.br 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Apache
162.241.62.121
/
lib64
/
python2.7
/
site-packages
/
mercurial
[ HOME ]
Exec
Submit
File Name : demandimport.pyo
� Hq�Qc @ s� d Z d d l Z e Z e � Z y e e j i i d d � Wn e k rZ d � Z n Xe Z d e f d � � YZ d d d d d � Z d d d d d d d d d d d d d d g Z d � Z d � Z d S( sU demandimport - automatic demandloading of modules To enable this module, do: import demandimport; demandimport.enable() Imports of the following forms will be demand-loaded: import a, b.c import a.b as c from a import b,c # a will be loaded immediately These imports will not be delayed: from a import * b = __import__(a) i����Nc C s t | | | | � S( s'