N
؇:c       s    d  Z    d Z  k Z k Z k Z k Z k Z k Z   d   Z ( d   Z	 0 d   Z
 ; d   Z H d   Z R d   Z d d   Z v d	   Z  d
   Z  e d  Z  d   Z  d   Z  d   Z  h  Z  d   Z  d   Z  d   Z d   Z <d f  d     YZ Id e f d     YZ Kd f  d     YZ ]d   Z dd   Z  qd   Z! {d   Z" d d  Z# d d  d! d" f \ Z$ Z% Z& Z' d#   Z( d$   Z) d%   Z* e+ d&  Z, e e e e+ d(   d)   d*   d'  Z- 
e+ d,   d-   d.   d+  Z.  d d/  Z/ =d d0  Z0 Hd d1  Z1 Td2   Z2 [e3 e d3  o [e i4 Z2 n ]d d4  Z5 ad d5  Z6 d6 S(7   su  Get useful information from live Python objects.

This module encapsulates the interface provided by the internal special
attributes (func_*, co_*, im_*, tb_*, etc.) in a friendlier fashion.
It also provides some help for examining source code and class layout.

Here are some of the useful functions provided by this module:

    ismodule(), isclass(), ismethod(), isfunction(), istraceback(),
        isframe(), iscode(), isbuiltin(), isroutine() - check object types
    getmembers() - get members of an object that satisfy a given condition

    getfile(), getsourcefile(), getsource() - find an object's source code
    getdoc(), getcomments() - get documentation on an object
    getmodule() - determine the module that an object came from
    getclasstree() - arrange classes so as to represent their hierarchy

    getargspec(), getargvalues() - get info about function arguments
    formatargspec(), formatargvalues() - format an argument spec
    getouterframes(), getinnerframes() - get info about frames
    currentframe() - get the current stack frame
    stack(), trace() - get info about frames on the stack or in a traceback
s&   Ka-Ping Yee <ping@lfw.org>, 1 Jan 2001c    s      % & t  |   t i j Sd S(   s   Return true if the object is a module.

    Module objects provide these attributes:
        __doc__         documentation string
        __file__        filename (missing for built-in modules)N(   s   types   objects   typess
   ModuleType(   s   objects
   inspect.pys   ismodule  s   c    s    ( - . t  |   t i j Sd S(   s   Return true if the object is a class.

    Class objects provide these attributes:
        __doc__         documentation string
        __module__      name of module in which this class was definedN(   s   types   objects   typess	   ClassType(   s   objects
   inspect.pys   isclass( s   c    s    0 8 9 t  |   t i j Sd S(   s  Return true if the object is an instance method.

    Instance method objects provide these attributes:
        __doc__         documentation string
        __name__        name with which this method was defined
        im_class        class object in which this method belongs
        im_func         function object containing implementation of method
        im_self         instance to which this method is bound, or NoneN(   s   types   objects   typess
   MethodType(   s   objects
   inspect.pys   ismethod0 s   c    s)   ; E F t  |   t i t i g j Sd S(   s  Return true if the object is a user-defined function.

    Function objects provide these attributes:
        __doc__         documentation string
        __name__        name with which this function was defined
        func_code       code object containing compiled function bytecode
        func_defaults   tuple of any default values for arguments
        func_doc        (same as __doc__)
        func_globals    global namespace in which this function was defined
        func_name       (same as __name__)N(   s   types   objects   typess   FunctionTypes
   LambdaType(   s   objects
   inspect.pys
   isfunction; s   
c    s    H O P t  |   t i j Sd S(   sb  Return true if the object is a traceback.

    Traceback objects provide these attributes:
        tb_frame        frame object at this level
        tb_lasti        index of last attempted instruction in bytecode
        tb_lineno       current line number in Python source code
        tb_next         next inner traceback object (called by this level)N(   s   types   objects   typess   TracebackType(   s   objects
   inspect.pys   istracebackH s   c    s    R a b t  |   t i j Sd S(   s|  Return true if the object is a frame object.

    Frame objects provide these attributes:
        f_back          next outer frame object (this frame's caller)
        f_builtins      built-in namespace seen by this frame
        f_code          code object being executed in this frame
        f_exc_traceback traceback if raised in this frame, or None
        f_exc_type      exception type if raised in this frame, or None
        f_exc_value     exception value if raised in this frame, or None
        f_globals       global namespace seen by this frame
        f_lasti         index of last attempted instruction in bytecode
        f_lineno        current line number in Python source code
        f_locals        local namespace seen by this frame
        f_restricted    0 or 1 if frame is in restricted execution mode
        f_trace         tracing function for this frame, or NoneN(   s   types   objects   typess	   FrameType(   s   objects
   inspect.pys   isframeR s   c    s    d s t t  |   t i j Sd S(   su  Return true if the object is a code object.

    Code objects provide these attributes:
        co_argcount     number of arguments (not including * or ** args)
        co_code         string of raw compiled bytecode
        co_consts       tuple of constants used in the bytecode
        co_filename     name of file in which this code object was created
        co_firstlineno  number of first line in Python source code
        co_flags        bitmap: 1=optimized | 2=newlocals | 4=*arg | 8=**arg
        co_lnotab       encoded mapping of line numbers to bytecode indices
        co_name         name with which this code object was defined
        co_names        tuple of names of local variables
        co_nlocals      number of local variables
        co_stacksize    virtual machine stack space required
        co_varnames     tuple of names of arguments and local variablesN(   s   types   objects   typess   CodeType(   s   objects
   inspect.pys   iscoded s   c    s)   v | } t  |   t i t i g j Sd S(   s,  Return true if the object is a built-in function or method.

    Built-in functions and methods provide these attributes:
        __doc__         documentation string
        __name__        original name of this function or method
        __self__        instance to which a method is bound, or NoneN(   s   types   objects   typess   BuiltinFunctionTypes   BuiltinMethodType(   s   objects
   inspect.pys	   isbuiltinv s   c    s;      t  |   t i t i t i t i t i g j Sd S(   s<   Return true if the object is any kind of function or method.N(   s   types   objects   typess   FunctionTypes
   LambdaTypes
   MethodTypes   BuiltinFunctionTypes   BuiltinMethodType(   s   objects
   inspect.pys	   isroutine s   c    s      g  }  x] t |   d  rJ }  t |  |  }  | p
 | |  o  | i | | f  n q! W | i    | Sd S(   s   Return all members of an object as (name, value) pairs sorted by name.
    Optionally, only return members that satisfy a given predicate.i    N(	   s   resultss   dirs   objects   keys   getattrs   values	   predicates   appends   sort(   s   objects	   predicates   resultss   keys   values
   inspect.pys
   getmembers s   	 	c    s<      t  i |   }  t |  t t  i |   Sd S(   sB   Return the indent size, in spaces, at the start of a line of text.N(   s   strings
   expandtabss   lines   explines   lens   lstrip(   s   lines   explines
   inspect.pys
   indentsize s   c    sE     t  |  d  o |  i o t i t i |  i  d  }  t }  x | d d  ru }  t
 t i |   }  | o
  q] n  t
 |  | }  | t j o  | } n  t | |  } q] W | t j	 oA  x7 t d t
 |   d  r }  | | | | | <qWn  t i | d  Sn d S(   s   Get the documentation string for an object.

    All tabs are expanded to spaces.  To clean up docstrings that are
    indented to line up with blocks of code, any whitespace than can be
    uniformly removed from the second line onwards is removed.s   __doc__s   
i   i    N(   s   hasattrs   objects   __doc__s   strings   splits
   expandtabss   liness   Nones   margins   lines   lens   lstrips   contents   indents   mins   ranges   is   join(   s   objects   liness   margins   lines   contents   indents   is
   inspect.pys   getdoc s$   !	 	 
  	 c    sI     t  |   o1  t |  d  o  |  i Sn  t d  n  t |   oD  t i |  i }   t |  d  o  |  i Sn  t d  n  t	 |   o  |  i
 }  n  t |   o  |  i }  n  t |   o  |  i }  n  t |   o  |  i }  n  t |   o  |  i Sn  t d  d S(   sB   Try to guess which (text or binary) file an object was defined in.s   __file__s   arg is a built-in modules   arg is a built-in classsN   arg is not a module, class, method, function, traceback, frame, or code objectN(   s   ismodules   objects   hasattrs   __file__s	   TypeErrors   isclasss   syss   moduless
   __module__s   ismethods   im_funcs
   isfunctions	   func_codes   istracebacks   tb_frames   isframes   f_codes   iscodes   co_filename(   s   objects
   inspect.pys   getfile s*   c    s     t  |   o  t i |  i Sn  y  t |   } Wn  t j
 o  t Sn X t	 i
 |  o  t i t	 | Sn  xI t i i   d  r3 }  t | d  o  | i t	 t |  <n q W t	 i
 |  o  t i t	 | Sn  t i d }  y4  t | |  i  }  | |  j o  | Sn Wn  t j
 o
  n X t i d }  y4  t | |  i  }  | |  j o  | Sn Wn  t j
 o
  n Xd S(   s3   Try to guess which module an object was defined in.i    s   __file__s   __main__s   __builtin__N(   s   isclasss   objects   syss   moduless
   __module__s   getsourcefiles   files	   TypeErrors   Nones   modulesbyfiles   has_keys   valuess   modules   hasattrs   __name__s   mains   getattrs
   mainobjects   AttributeErrors   builtins   builtinobject(   s   objects   files   modules   mains
   mainobjects   builtins   builtinobjects
   inspect.pys	   getmodule s:    	    c    sK      t  |   }  | d d j o  | d  d } n  | Sd S(   s?   Try to guess which Python source file an object was defined in.i   s   .pycs   .pyN(   s   getfiles   objects   filename(   s   objects   filenames
   inspect.pys   getsourcefile s
   c    sa     y5  t  t |    }  | i   }  | i   Wn(  t t f j
 o  t d  n X t	 |   o  | d f Sn  t
 |   o  |  i }  d | g d | d g f }  x] t t |   d  r8 }  t i | |  d  | j o  | | f Sn q W t d  n  t |   o  |  i }  n  t |   o |  i }  n t |   o |  i }  n t |   o |  i }  n t |   o y |  i d } Wn" 	t j
 o 
t d  nc XxN | d j o= t i | |  d  d	 g j o Pn | d } qW| | f Sn d
 S(   sb  Return the entire source file and starting line number for an object.

    The argument may be a module, class, method, function, traceback, frame,
    or code object.  The source code is returned as a list of all the lines
    in the file and the line number indexes a line in that list.  An IOError
    is raised if the source code cannot be retrieved.s   could not get source codei    s   classs   :i   s   could not find class definitioni   s"   could not find function definitions   defN(   s   opens   getsourcefiles   objects   files	   readliness   liness   closes	   TypeErrors   IOErrors   ismodules   isclasss   __name__s   names   matchess   ranges   lens   is   strings   splits   ismethods   im_funcs
   isfunctions	   func_codes   istracebacks   tb_frames   isframes   f_codes   iscodes   co_firstlinenos   lnums   AttributeError(   s   objects   files   liness   names   matchess   is   lnums
   inspect.pys
   findsource sH    	! $ c    s  y t  |   \ } } Wn t Sn Xt |   o!d } | d d  d j o d } n xH | t |  j  o t i	 | |  d d g j o | d } qz W| | d  d j o g  } | } xZ | t |  j  o | | d  d j o.  | i t i | |   !| d } q W"t i | d  Sn n0%| d j o&t | |  } '| d } (t i	 | |  d j oF )x< )| d j o t i	 | |  d j o *| d } qWnQ ,xJ ,t i | |  d  d j o t | |  | j o .| d } q W/| d j o2 t i | |  d  d j o t | |  | j o1t i t i | |   g } 2| d j o 3| d } 4t i t i | |   } 5x 5| d  d j o t | |  | j oX 6| g | d *7| d } 8| d j  o 8Pn 9t i t i | |   } qWn :t i | d  Sn n d S(   sD   Get lines of comments immediately preceding an object's source code.i    i   s   #!i   s    s   #N(   s
   findsources   objects   liness   lnums   Nones   ismodules   starts   lens   strings   strips   commentss   ends   appends
   expandtabss   joins
   indentsizes   indents   lstrips   comment(   s   objects   liness   lnums   starts   commentss   ends   indents   comments
   inspect.pys   getcommentssV     	  6		 + * 8E" + (s
   ListReaderc      s&   <d  Z  =>d   Z Bd   Z RS(   sC   Provide a readline() method to return lines from a list of strings.c    s   >?| |  _  @d |  _ d  S(   Ni    (   s   liness   selfs   index(   s   selfs   liness
   inspect.pys   __init__>s   c    sU   BC|  i } D| t |  i  j  o" E| d |  _ F|  i | Sn Gd Sd  S(   Ni   s    (   s   selfs   indexs   is   lens   lines(   s   selfs   is
   inspect.pys   readlineBs
   (   s   __doc__s   __init__s   readline(    s
   inspect.pys
   ListReader<s   	s
   EndOfBlockc      s   IIRS(   N(    (    s
   inspect.pys
   EndOfBlockIs    s   BlockFinderc      s&   Kd  Z  LMd   Z Rd   Z RS(   s@   Provide a tokeneater() method to detect the end of a code block.c    s+   MNd |  _ Od |  _ Pd |  _ d  S(   Ni    (   s   selfs   indents   starteds   last(   s   selfs
   inspect.pys   __init__Ms   c 
   s   R| \ } } | \ } }	 S|  i o' T| t i j o Td |  _ n n U| t i j o V| |  _ n{ W| t i j o X|  i	 d |  _	 nQ Y| t i
 j o= Z|  i	 d |  _	 [|  i	 d j o [t |  i  n n d  S(   Ni   i    (   s   selfs   starteds   types   tokenizes   NAMEs   NEWLINEs   srows   lasts   INDENTs   indents   DEDENTs
   EndOfBlock(
   s   selfs   types   tokens   .6s   .8s   lines   srows   scols   erows   ecols
   inspect.pys
   tokeneaterRs     (   s   __doc__s   __init__s
   tokeneater(    s
   inspect.pys   BlockFinderKs   	c    s`   ]^_y& `t  i  t |   i t   i  Wn* at j
 o } b|  | i d  Sn Xd S(   s@   Extract the block of code at the top of the given list of lines.i    N(	   s   tokenizes
   ListReaders   liness   readlines   BlockFinders
   tokeneaters
   EndOfBlocks   eobs   args(   s   liness   eobs
   inspect.pys   getblock]s
   &c    s[   dklt  |   \ } } nt |   o n| d f Sn ot | |  | d f Sd S(   s  Return a list of source lines and starting line number for an object.

    The argument may be a module, class, method, function, traceback, frame,
    or code object.  The source code is returned as a list of the lines
    corresponding to the object and the line number indicates where in the
    original source file the first line of code was found.  An IOError is
    raised if the source code cannot be retrieved.i    i   N(   s
   findsources   objects   liness   lnums   ismodules   getblock(   s   objects   liness   lnums
   inspect.pys   getsourcelinesds
    c    s2   qvwt  |   \ } } xt i | d  Sd S(   s  Return the text of the source code for an object.

    The argument may be a module, class, method, function, traceback, frame,
    or code object.  The source code is returned as a single string.  An
    IOError is raised if the source code cannot be retrieved.s    N(   s   getsourceliness   objects   liness   lnums   strings   join(   s   objects   liness   lnums
   inspect.pys	   getsourceqs   c    s   {|}g  } ~|  i d    xc |  d rV } | i | | i f  | i |  o$ | i t | | | |   n q. W| Sd S(   s-   Recursive helper function for getclasstree().c    s   ~t  |  i | i  S(   N(   s   cmps   as   __name__s   b(   s   as   bs
   inspect.pys   <lambda>~s    i    N(	   s   resultss   classess   sorts   cs   appends	   __bases__s   childrens   has_keys   walktree(   s   classess   childrens   parents   resultss   cs
   inspect.pys   walktree{s   	 	(c    s4  h  } g  } x |  d r } | i ox xn | i d r^ } | i |  o g  | | <n | | i |  | o
 | |  j o Pn qI Wn% | | j o | i |  n q$ Wx= | i	   d r* } | |  j o | i |  n q Wt
 | | t  Sd S(   s  Arrange the given list of classes into a hierarchy of nested lists.

    Where a nested list appears, it contains classes derived from the class
    whose entry immediately precedes the list.  Each entry is a 2-tuple
    containing a class and a tuple of its base classes.  If the 'unique'
    argument is true, exactly one entry appears in the returned structure
    for each class in the given list.  Otherwise, classes using multiple
    inheritance and their descendants will appear multiple times.i    N(   s   childrens   rootss   classess   cs	   __bases__s   parents   has_keys   appends   uniques   keyss   walktrees   None(   s   classess   uniques   childrens   rootss   cs   parents
   inspect.pys   getclasstrees(   		 	 	  	i    i   i   i   i   c    s  t  |   o t d  n |  i } |  i } |  i } t	 | |   } d } xt |  d r} | | d  d d g j og  g  g  f \ } } }	 x| t |  j  ot | |  }
 | d } |
 t i j oRt i |
 } t | |  t | | d  d } | d } | d d	 g j o$ | i |  |	 i |  n | d
 j o | i | |  | d d | d <xv | d d j o` | i   |	 i   } | | g | | )| o Pn | d d | d <qW| o Pn n n q W| d | | <n qy Wt } |  i t @o! |  i | } | d } n t } |  i t  @o |  i | } n | | | f Sd S(   s  Get information about the arguments accepted by a code object.

    Three things are returned: (args, varargs, varkw), where 'args' is
    a list of argument names (possibly containing nested lists), and
    'varargs' and 'varkw' are the names of the * and ** arguments or None.s   arg is not a code objecti    i   s    s   .i   i   s   UNPACK_TUPLEs   UNPACK_SEQUENCEs
   STORE_FASTN(!   s   iscodes   cos	   TypeErrors   co_codes   codes   co_argcounts   nargss   co_varnamess   namess   lists   argss   steps   ranges   is   stacks   remains   counts   lens   ords   ops   diss   HAVE_ARGUMENTs   opnames   values   appends   pops   sizes   Nones   varargss   co_flagss
   CO_VARARGSs   varkws   CO_VARKEYWORDS(   s   cos   codes   nargss   namess   argss   steps   is   stacks   remains   counts   ops   opnames   values   sizes   varargss   varkws
   inspect.pys   getargssZ    	 	 )   		c    s\   t  |   o t d  n t |  i  \ } } } | | | |  i f Sd S(   sg  Get the names and default values of a function's arguments.

    A tuple of four things is returned: (args, varargs, varkw, defaults).
    'args' is a list of the argument names (it may contain nested lists).
    'varargs' and 'varkw' are the names of the * and ** arguments or None.
    'defaults' is an n-tuple of the default values of the last n arguments.s   arg is not a Python functionN(	   s
   isfunctions   funcs	   TypeErrors   getargss	   func_codes   argss   varargss   varkws   func_defaults(   s   funcs   argss   varargss   varkws
   inspect.pys
   getargspecs
    c    s;   t  |  i  \ } } } | | | |  i f Sd S(   sW  Get information about arguments passed into a particular frame.

    A tuple of four things is returned: (args, varargs, varkw, locals).
    'args' is a list of the argument names (it may contain nested lists).
    'varargs' and 'varkw' are the names of the * and ** arguments or None.
    'locals' is the locals dictionary of the given frame.N(   s   getargss   frames   f_codes   argss   varargss   varkws   f_locals(   s   frames   argss   varargss   varkws
   inspect.pys   getargvaluess   c    s   t  |   t i t i g j od t | d  |   } t |  d j o d | d d Sn d t	 i
 | d  d Sn | |   Sd S(	   s7   Recursively walk a sequence, stringifying each element.c    s   t  |  |  S(   N(   s   strseqs   os   c(   s   os   cs
   inspect.pys   <lambda>s    i   s   (i    s   ,)s   , s   )N(   s   types   objects   typess   ListTypes	   TupleTypes   maps   converts   resultss   lens   strings   join(   s   objects   converts   resultss
   inspect.pys   strseqs   "c    s  g  } | o t |   t |  }	 n x{ t t |    d rb }
  t |  |
 |  } | o
 |
 |	 j o | | | |
 |	  } n | i |  qN W| o | i | |   n | o | i | |   n d t i | d  d Sd S(   s  Format a pretty argument spec from the 4 values returned by getargspec.

    The first four arguments are (args, varargs, varkw, defaults).  The
    other four arguments are the corresponding optional formatting functions
    that are called to turn names and values into strings.i    s   (s   , s   )N(   s   specss   defaultss   lens   argss   firstdefaults   ranges   is   strseqs	   argformats   specs   defaultformats   appends   varargss   varargsformats   varkws   varkwformats   strings   join(   s   argss   varargss   varkws   defaultss	   argformats   varargsformats   varkwformats   defaultformats   specss   firstdefaults   is   specs
   inspect.pys   formatargspecs   	
 	

c    s   d |  S(   Ns   *(   s   name(   s   names
   inspect.pys   <lambda>s    c    s   d |  S(   Ns   **(   s   name(   s   names
   inspect.pys   <lambda>s    c    s   d t  |   S(   Ns   =(   s   reprs   value(   s   values
   inspect.pys   <lambda>s    c    s   
| | | d  } g  }	 x< t t |    d r# }
 |	 i	 t
 |  |
 |   q< W| o( |	 i	 | |  | | |   n | o( |	 i	 | |  | | |   n d t i |	 d  d Sd S(   s  Format a pretty argument spec from the 4 values returned by getargvalues.

    The first four arguments are (args, varargs, varkw, locals).  The
    other four arguments are the corresponding optional formatting functions
    that are called to turn names and values into strings.c    s"   | |   | | |   Sd  S(   N(   s	   argformats   names   valueformats   locals(   s   names   localss	   argformats   valueformats
   inspect.pys   converts   i    s   (s   , s   )N(   s   localss	   argformats   valueformats   converts   specss   ranges   lens   argss   is   appends   strseqs   varargss   varargsformats   varkws   varkwformats   strings   join(   s   argss   varargss   varkws   localss	   argformats   varargsformats   varkwformats   valueformats   converts   specss   is
   inspect.pys   formatargvalues
s   	 	!
(
(c    s   d |  S(   Ns   *(   s   name(   s   names
   inspect.pys   <lambda>s    c    s   d |  S(   Ns   **(   s   name(   s   names
   inspect.pys   <lambda>s    c    s   d t  |   S(   Ns   =(   s   reprs   value(   s   values
   inspect.pys   <lambda>s    c    s>   '(t  |   o )|  i }  n *t |   o +t d  n -t |   } .| d j o /|  i d | d } 0yo 1t
 |   \ } } 2t | d  } 3t | t |  |  } 4| | | | !} 5|  i d | } Wn 67t } } n Xn 9t } } ;| |  i |  i i | | f Sd S(   s  Get information about a frame or traceback object.

    A tuple of five things is returned: the filename, the line number of
    the current line, the function name, a list of lines of context from
    the source code, and the index of the current line within that list.
    The optional second argument specifies the number of lines of context
    to return, which are centered around the current line.s&   arg is not a frame or traceback objecti    i   i   N(   s   istracebacks   frames   tb_frames   isframes	   TypeErrors   getsourcefiles   filenames   contexts   f_linenos   starts
   findsources   liness   lnums   maxs   mins   lens   indexs   Nones   f_codes   co_name(   s   frames   contexts   filenames   starts   liness   lnums   indexs
   inspect.pys   getframeinfo s$   c    s[   =ABg  } Cx; C|  o0 D| i |  f t |  |   E|  i }  q WF| Sd S(   s   Get a list of records for a frame and all higher (calling) frames.

    Each record contains a frame object, filename, line number, function
    name, a list of lines of context, and index within the context.N(   s	   framelists   frames   appends   getframeinfos   contexts   f_back(   s   frames   contexts	   framelists
   inspect.pys   getouterframes=s   	 
 c    sj   HLM|  i }  Ng  } Ox> O|  o3 P| i |  i f t |  |   Q|  i }  q! WR| Sd S(   s   Get a list of records for a traceback's frame and all lower frames.

    Each record contains a frame object, filename, line number, function
    name, a list of lines of context, and index within the context.N(   s   tbs   tb_nexts	   framelists   appends   tb_frames   getframeinfos   context(   s   tbs   contexts	   framelists
   inspect.pys   getinnerframesHs   	 
#c      s7   TUVy Wd  Wn XYt  i i i Sn Xd S(   s5   Return the frame object for the caller's stack frame.s   catch meN(   s   syss   exc_tracebacks   tb_frames   f_back(    s
   inspect.pys   currentframeTs
   s	   _getframec    s    ]^_t  t   i |   Sd S(   s@   Return a list of records for the stack above the caller's frame.N(   s   getouterframess   currentframes   f_backs   context(   s   contexts
   inspect.pys   stack]s   c    s   abct  t i |   Sd S(   sC   Return a list of records for the stack below the current exception.N(   s   getinnerframess   syss   exc_tracebacks   context(   s   contexts
   inspect.pys   traceas   N(7   s   __doc__s   __version__s   syss   typess   strings   diss   imps   tokenizes   ismodules   isclasss   ismethods
   isfunctions   istracebacks   isframes   iscodes	   isbuiltins	   isroutines   Nones
   getmemberss
   indentsizes   getdocs   getfiles   modulesbyfiles	   getmodules   getsourcefiles
   findsources   getcommentss
   ListReaders	   Exceptions
   EndOfBlocks   BlockFinders   getblocks   getsourceliness	   getsources   walktrees   getclasstrees   CO_OPTIMIZEDs   CO_NEWLOCALSs
   CO_VARARGSs   CO_VARKEYWORDSs   getargss
   getargspecs   getargvaluess   strs   strseqs   formatargspecs   formatargvaluess   getframeinfos   getouterframess   getinnerframess   currentframes   hasattrs	   _getframes   stacks   trace(    s
   inspect.pys   ? sV   	'

	,+

!1
*! 