
    daf+                     @    d Z d Zd Zd Zd ZdZd Zd Zdd	d
Zd Z	y)a  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                       y)z+

    >>> 2+2
    5

    >>> 2+2
    4
    N r       ;/root/Python-3.12.4/Lib/test/test_doctest/sample_doctest.pyfoor          r   c                       y)z

    >>> 2+2
    4
    Nr   r   r   r   barr	      r   r   c                       y)zo

    >>> import test.test_doctest.test_doctest
    >>> test.test_doctest.test_doctest.sillySetup
    True
    Nr   r   r   r   test_silly_setupr       r   r   c                       y)zn
    >>> if 1:
    ...    print('a')
    ...    print()
    ...    print('b')
    a
    <BLANKLINE>
    b
    Nr   r   r   r   w_blankr   (   r   r      c                       y)z
    >>> x
    1
    Nr   r   r   r   x_is_oner   4   r   r   c                       y)z
    >>> y
    1
    Nr   r   r   r   y_is_oner   :   r   r   zG
                    >>> 42
                    42
                    zH
                    >>> 42
                    666
                    )goodbadc                  *    dd l } | j                         S )N    )doctestDocTestSuite)r   s    r   
test_suiter   J   s    !!r   N)
__doc__r   r	   r   r   xr   r   __test__r   r   r   r   <module>r      sE   	 	"r   