ó
æNXc           @  s,   d  Z  d d l m Z d „  Z d „  Z d S(   s’   Simple example using doctests.

This file just contains doctests both using plain python and IPython prompts.
All tests should be loaded by nose.
iÿÿÿÿ(   t   print_functionc           C  s   d S(   sÖ   Some pure python tests...

    >>> pyfunc()
    'pyfunc'

    >>> import os

    >>> 2+3
    5

    >>> for i in range(3):
    ...     print(i, end=' ')
    ...     print(i+1, end=' ')
    ...
    0 1 1 2 2 3 
    t   pyfunc(    (    (    (    sU   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/testing/plugin/simple.pyR      s    c           C  s   d S(   s1   Some pure python tests...

    >>> 1+1
    2
    t   pyfunc2(    (    (    (    sU   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/testing/plugin/simple.pyt   ipyfunc2   s    N(   t   __doc__t
   __future__R    R   R   (    (    (    sU   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/testing/plugin/simple.pyt   <module>   s   	