File: //opt/alt/python27/lib64/python2.7/site-packages/guppy/__init__.pyo
�
;�Pc           @   s8   d  Z  d Z d d l Z d d l m Z d d � Z d S(   s_  Top level package of Guppy, a library and programming environment
currently providing in particular the Heapy subsystem, which supports
object and heap memory sizing, profiling and debugging.
What is exported is the following:
hpy()	Create an object that provides a Heapy entry point.
Root()	Create an object that provides a top level entry point.
t   hpyt   Rooti����N(   R   c         C   s7   t  �  } |  d k	 r* |  | j j j _ n  | j j j S(   su  Main entry point to the Heapy system.
Returns an object that provides a session context and will import
required modules on demand. Some commononly used methods are:
.heap() 		get a view of the current reachable heap
.iso(obj..) 	get information about specific objects 
The optional argument, useful for debugging heapy itself, is:
    ht     an alternative hiding tag
N(   R   t   Nonet   guppyt   heapyt   Viewt   _hiding_tag_t   Use(   t   htt   r(    (    sA   /opt/alt/python27/lib64/python2.7/site-packages/guppy/__init__.pyR       s    	(   R    R   (   t   __doc__t   __all__t   guppy.etc.CompatR   t   guppy.etc.GlueR   R   R    (    (    (    sA   /opt/alt/python27/lib64/python2.7/site-packages/guppy/__init__.pyt   <module>
   s