%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /usr/local/lib/python3.8/__pycache__/
Upload File :
Create Path :
Current File : //usr/local/lib/python3.8/__pycache__/pyclbr.cpython-38.pyc

U

na;@sdZddlZddlZddlZddlZddlmZmZm	Z	ddddgZ
iZGdd	d	ZGd
ddeZ
GdddeZdd
ZdddZdddZdddZd ddZddZddZddZddZedkredS)!aParse a Python module and describe its classes and functions.

Parse enough of a Python file to recognize imports and class and
function definitions, and to find out the superclasses of a class.

The interface consists of a single function:
    readmodule_ex(module, path=None)
where module is the name of a Python module, and path is an optional
list of directories where the module is to be searched.  If present,
path is prepended to the system search path sys.path.  The return value
is a dictionary.  The keys of the dictionary are the names of the
classes and functions defined in the module (including classes that are
defined via the from XXX import YYY construct).  The values are
instances of classes Class and Function.  One special key/value pair is
present for packages: the key '__path__' has a list as its value which
contains the package search path.

Classes and Functions have a common superclass: _Object.  Every instance
has the following attributes:
    module  -- name of the module;
    name    -- name of the object;
    file    -- file in which the object is defined;
    lineno  -- line in the file where the object's definition starts;
    parent  -- parent of this object, if any;
    children -- nested objects contained in this object.
The 'children' attribute is a dictionary mapping names to objects.

Instances of Function describe functions with the attributes from _Object.

Instances of Class describe classes with the attributes from _Object,
plus the following:
    super   -- list of super classes (Class instances if possible);
    methods -- mapping of method names to beginning line numbers.
If the name of a super class is not recognized, the corresponding
entry in the list of super classes is not a class instance but a
string giving the name of the super class.  Since import statements
are recognized and imported modules are scanned as well, this
shouldn't happen often.
N)NAMEDEDENTOP
readmodule
readmodule_exClassFunctionc@s eZdZdZddZddZdS)_Objectz+Information about Python class or function.cCs(||_||_||_||_||_i|_dSN)modulenamefilelinenoparentchildrenselfrrr
rrr"/usr/local/lib/python3.8/pyclbr.py__init__6sz_Object.__init__cCs||j|<dSr
)r)rrobjrrr	_addchild>sz_Object._addchildN)__name__
__module____qualname____doc__rrrrrrr	4sr	c@seZdZdZdddZdS)rz7Information about a Python function, including methods.NcCst||||||dSr
)r	rrrrrrDszFunction.__init__)N)rrrrrrrrrrBscs*eZdZdZdfdd	ZddZZS)rz!Information about a Python class.Ncs0t|||||||dkr gn||_i|_dSr
)r	rsupermethods)rrrrr
rr	__class__rrrJszClass.__init__cCs||j|<dSr
)r)rrrrrr
_addmethodOszClass._addmethod)N)rrrrrr 
__classcell__rrrrrHscCs:t|j||j||}|||t|tr6||||S)z*Return a Function after nesting within ob.)rrr
r
isinstancerr )ob	func_namerZnewfuncrrr_nest_functionSs

r%cCs&t|j|||j||}||||S)z'Return a Class after nesting within ob.)rrr
r)r#
class_namerrZnewclassrrr_nest_class[sr'cCs6i}t||pgD]\}}t|tr|||<q|S)zReturn Class objects for the top-level classes in module.

    This is the original interface, before Functions were added.
    )_readmoduleitemsr"r)rpathreskeyvaluerrrras


cCst||p
gS)zReturn a dictionary with all functions and classes in module.

    Search for module in PATH + sys.path.
    If possible, include imported superclasses.
    Do this by reading source, without importing (and executing) it.
    )r()rr*rrrrmsc	Cs|dk	rd||f}n|}|tkr*t|Si}|tjkrL|dkrL|t|<|S|d}|dkr|d|}||dd}t|||}|dk	rd||f}d|krtd|t||d|Sd}	|dk	r|}
n
|tj}
tj	
||
}|dkrtd||d	|t|<|jdk	r$|j|d<z|j
|}Wnttfk
rR|YSX|dkrb|S|j
|}
t|||
|||S)
a.Do the hard work for readmodule[_ex].

    If inpackage is given, it must be the dotted name of the package in
    which we are searching for a submodule, and then PATH must be the
    package search path; otherwise, we are searching for a top-level
    module, and path is combined with sys.path.
    Nz%s.%s.r__path__zNo package named {}zno module named )r)_modulessysbuiltin_module_namesrfindr(ImportErrorformatr*	importlibutil_find_spec_from_pathModuleNotFoundErrorsubmodule_search_locationsloader
get_sourceAttributeErrorget_filename_create_tree)rr*	inpackage
fullmoduletreeipackageZ	submodulerfZsearch_pathspecsourcefnamerrrr(vsJ	





r(c!
CsHt|}g}t|j}z|D]\}	}
}}}
|	tkr`|\}}|r^|dd|kr^|d=qBq"|
dkr|\}}|r|dd|kr|d=qpt|dd\}	}}|	tkrq"d}|r|dd}t|||}nt	||||}|||<|
||fq"|
dkr|\}}|r(|dd|kr(|d=qt|dd\}	}}|	tkrJq"t|dd\}	}
}d}|
dkrg}d}g}t|dd\}	}
}|
d	kr|dkrd
|}||kr||}nL|d}t
|dkr|d}|d}|tkrt|}||kr||}|
|g}|
dkr0|d7}nZ|
d
krR|d8}|dkrqn8|
dkrh|dkrhn"|	ttfkrz|dkrz|
|
qz|}|r|dd}t||||}nt|||||}|||<|
||fq"|
dkrh|ddkrht|}|D]d\}}zL|dkr t||n2zt|||Wn tk
rPt|gYnXWnYnXqq"|
dkr"|ddkr"t|\}}
|r"|
dkrq"t|}zt|||}WnYq"YnX|D]X\}} ||kr|||| p|<n0|dkr|D] }|ddkr||||<qqq"Wntk
r:YnX||S)aReturn the tree for a particular module.

    fullmodule (full module name), inpackage+module, becomes o.module.
    path is passed to recursive calls of _readmodule.
    fname becomes o.file.
    source is tokenized.  Imports cause recursive calls to _readmodule.
    tree is {} or {'__path__': <submodule search locations>}.
    inpackage, None or string, is passed to recursive calls of _readmodule.

    The effect of recursive calls is mutation of global _modules.
    r/defrNclass()),r.rOrPimportfrom*_)ioStringIOtokenizegenerate_tokensreadlinernextrr%rappendjoinsplitlenr1rr'r_getnamelistr(r5_getname
StopIterationclose)!rBr*rIrHrCrArFstackg	tokentypetokenstartZ_end_linerZ
thisindentr$Zcur_funcZcur_objr&ZinheritnameslevelrncmdZ	cur_classmodulesmodZ_mod2Zn2rrrr@s




















r@cCslg}t|\}}|sqh|dkr,t|\}}nd}|||f|dkr\d|kr\t|d}q>|dkrqhq|S)zReturn list of (dotted-name, as-name or None) tuples for token source g.

    An as-name is the name that follows 'as' in an as clause.
    asNrP
r/)rbr]r\)rfrkrrhZname2rrrraEsracCsg}t|dd\}}|tkr0|dkr0d|fS||t|dd\}}|dkrXqt|dd\}}|tkrvq||q:d||fS)zBReturn (dotted-name or None, next-token) tuple for token source g.rrUNr.)r\rr]r^)rfpartsrgrhrrrrb[s
rbc
CsXddl}ztjd}Wnt}YnX|j|rj|j|g}|j|}|	drn|dd}ng}t
||}dd}t||dd	}d
}|rT|
}t|trqt|dsd|_t|trt|j|dd	}|D]}	|j||	_q||t|tr,tdd
|j|j|j|jqt|trtdd
|j|j|jqdS)z?Print module output (default this file) for quick visual check.rNr/z.pycSst|ddS)Nrr)getattr)arrr<lambda>|z_main.<locals>.<lambda>T)r,reverseruindentz{}class {} {} {} z{}def {} {})osr2argv__file__r*existsdirnamebasenamelowerendswithrsortedvaluespopr"listhasattrr}r	rextendrprintr6rrrr)
rrrr*rCZ
lineno_keyZobjsZindent_levelrZnew_objsr#rrr_mainmsL







r__main__)N)N)N)N)rrWr2importlib.utilr7rYrhrrr__all__r1r	rrr%r'rrr(r@rarbrrrrrr<module>s,(


	
@&

Zerion Mini Shell 1.0