Ñò
$8Zc           @   s   d  Z  d d k Z d „  Z d S(   s  curses.wrapper

Contains one function, wrapper(), which runs another function which
should be the rest of your curses-based application.  If the
application raises an exception, wrapper() will restore the terminal
to a sane state so you can read the resulting traceback.

iÿÿÿÿNc      
   O   sŒ   zY t  i ƒ  } t  i ƒ  t  i ƒ  | i d ƒ y t  i ƒ  Wn n X|  | | | Ž SWd | i d ƒ t  i ƒ  t  i ƒ  t  i ƒ  Xd S(   s  Wrapper function that initializes curses and calls another function,
    restoring normal keyboard/screen behavior on error.
    The callable object 'func' is then passed the main window 'stdscr'
    as its first argument, followed by any other arguments passed to
    wrapper().
    i   Ni    (	   t   cursest   initscrt   noechot   cbreakt   keypadt   start_colort   echot   nocbreakt   endwin(   t   funct   argst   kwdst   stdscr(    (    s$   /usr/lib/python2.6/curses/wrapper.pyt   wrapper   s    



(   t   __doc__R    R   (    (    (    s$   /usr/lib/python2.6/curses/wrapper.pyt   <module>   s   