Ñò
ÚãSSc           @   s   d  Z  d „  Z d S(   s  
Module showing how doctests can be included with source code
Each '>>>' line is run as if in a python shell, and counts as a test.
The next line, if not '>>>' is the expected output of the previous line.
If anything doesn't match exactly (including trailing spaces), the test fails.
c         C   s   |  | S(   sF   
    >>> multiply(4, 3)
    12
    >>> multiply('a', 3)
    'aaa'
    (    (   t   at   b(    (    s   tdt.pyt   multiply   s    N(   t   __doc__R   (    (    (    s   tdt.pyt   <module>   s   