;
ثق"Ic               @   sc   d  Z  d   Z d   Z d   Z d   Z d Z d   Z d   Z i d d	 6d
 d 6Z d   Z	 d S(   u  This is a sample module that doesn't really test anything all that
   interesting.

It simply has a few tests, some of which succeed and some of which fail.

It's important that the numbers remain constant as another test is
testing the running of these tests.


>>> 2+2
4
c               C   s   d S(   u+   

    >>> 2+2
    5

    >>> 2+2
    4
    N(    (    (    (    u0   /mit/python/lib/python3.0/test/sample_doctest.pyu   foo   s    c               C   s   d S(   u   

    >>> 2+2
    4
    N(    (    (    (    u0   /mit/python/lib/python3.0/test/sample_doctest.pyu   bar   s    c               C   s   d S(   uU   

    >>> import test.test_doctest
    >>> test.test_doctest.sillySetup
    True
    N(    (    (    (    u0   /mit/python/lib/python3.0/test/sample_doctest.pyu   test_silly_setup    s    c               C   s   d S(   un   
    >>> if 1:
    ...    print('a')
    ...    print()
    ...    print('b')
    a
    <BLANKLINE>
    b
    N(    (    (    (    u0   /mit/python/lib/python3.0/test/sample_doctest.pyu   w_blank(   s    i   c               C   s   d S(   u   
    >>> x
    1
    N(    (    (    (    u0   /mit/python/lib/python3.0/test/sample_doctest.pyu   x_is_one4   s    c               C   s   d S(   u   
    >>> y
    1
    N(    (    (    (    u0   /mit/python/lib/python3.0/test/sample_doctest.pyu   y_is_one:   s    uG   
                    >>> 42
                    42
                    u   gooduH   
                    >>> 42
                    666
                    u   badc              C   s   d d  l  }  |  j   S(   Ni    (   u   doctestu   DocTestSuite(   u   doctest(    (    u0   /mit/python/lib/python3.0/test/sample_doctest.pyu
   test_suiteJ   s    N(
   u   __doc__u   foou   baru   test_silly_setupu   w_blanku   xu   x_is_oneu   y_is_oneu   __test__u
   test_suite(    (    (    u0   /mit/python/lib/python3.0/test/sample_doctest.pyu   <module>   s   	
					
