B
    Çä˜\   ã               @   s   d Z dd„ Zdd„ ZdS )z’Simple example using doctests.

This file just contains doctests both using plain python and IPython prompts.
All tests should be loaded by nose.
c               C   s   dS )zÖ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 
    Úpyfunc© r   r   r   ú<lib/python3.7/site-packages/IPython/testing/plugin/simple.pyr      s    r   c               C   s   dS )z1Some pure python tests...

    >>> 1+1
    2
    Zpyfunc2r   r   r   r   r   Úipyfunc2   s    r   N)Ú__doc__r   r   r   r   r   r   Ú<module>   s   