ó
\K]c           @` s   d  d l  m Z m Z m Z d d l m Z d  d l Z d   Z d e	 f d     YZ
 d   Z d	   Z d
   Z d   Z d d d d d d g Z d S(   i    (   t   print_functiont   divisiont   absolute_importi   (   t   typeofNc          G` s   t  j |    S(   s    Provides an n-dimensional parallel iterator that generates index tuples
    for each iteration point. Sequentially, pndindex is identical to np.ndindex.
    (   t   npt   ndindex(   t   args(    (    s,   lib/python2.7/site-packages/numba/special.pyt   pndindex   s    t   prangec           B` s   e  Z d  Z d   Z RS(   s    Provides a 1D parallel iterator that generates a sequence of integers.
    In non-parallel contexts, prange is identical to range.
    c         G` s
   t  |   S(   N(   t   range(   t   clsR   (    (    s,   lib/python2.7/site-packages/numba/special.pyt   __new__   s    (   t   __name__t
   __module__t   __doc__R   (    (    (    s,   lib/python2.7/site-packages/numba/special.pyR      s   c         G` s   d d  l  } t | |   } d j g  | D] } d ^ q(  | } d |  | f } i  } | j j | i | |  6|  | j | d  S(   Ni    t   ,s   "%s"s(   def _gdb_func_injection():
	%s(%s)

    t   _gdb_func_injection(   t   numbat   getattrt   joint   sixt   exec_t   njit(   t	   func_nameR   R   t   fnt   _t   argstrt   defnt   l(    (    s,   lib/python2.7/site-packages/numba/special.pyt   _gdb_python_call_gen   s    &c          G` s   t  d |     d S(   sç   
    Calling this function will invoke gdb and attach it to the current process
    at the call site. Arguments are strings in the gdb command language syntax
    which will be executed by gdb once initialisation has occurred.
    t   gdbN(   R   (   R   (    (    s,   lib/python2.7/site-packages/numba/special.pyR      s    c           C` s   t  d    d S(   s  
    Calling this function will inject a breakpoint at the call site that is
    recognised by both `gdb` and `gdb_init`, this is to allow breaking at
    multiple points. gdb will stop in the user defined code just after the frame
    employed by the breakpoint returns.
    t   gdb_breakpointN(   R   (    (    (    s,   lib/python2.7/site-packages/numba/special.pyR   (   s    c          G` s   t  d |     d S(   s$  
    Calling this function will invoke gdb and attach it to the current process
    at the call site, then continue executing the process under gdb's control.
    Arguments are strings in the gdb command language syntax which will be
    executed by gdb once initialisation has occurred.
    t   gdb_initN(   R   (   R   (    (    s,   lib/python2.7/site-packages/numba/special.pyR    2   s    R   R   R   R   R    (   t
   __future__R    R   R   t   typing.typeofR   t   numpyR   R   t   objectR   R   R   R   R    t   __all__(    (    (    s,   lib/python2.7/site-packages/numba/special.pyt   <module>   s   					
	
