Psyduck - 可達鴨 之 鴨力山大2


Server : LiteSpeed
System : Linux premium217.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User : alloknri ( 880)
PHP Version : 8.1.34
Disable Function : NONE
Directory :  /opt/alt/python311/lib64/python3.11/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //opt/alt/python311/lib64/python3.11/__pycache__/doctest.cpython-311.pyc
�

!A?h9�����dZdZgd�ZddlZddlZddlZddlZddlZddlZddl	Z	ddl
Z
ddlZddlZddl
mZmZddlmZedd��ZiZd	�Zed
��Zed��Zed��Zed
��Zed��Zed��ZeezezezezezZed��Zed��Zed��Zed��Zed��Z eezezeze zZ!dZ"dZ#d�Z$dZd�Z%d�Z&d�Z'd[d�Z(d�Z)Gd�d e��Z*d!�Z+d"�Z,d#�Z-Gd$�d%ej.��Z/d&�Z0Gd'�d(��Z1Gd)�d*��Z2Gd+�d,��Z3Gd-�d.��Z4Gd/�d0��Z5Gd1�d2��Z6Gd3�d4e7��Z8Gd5�d6e7��Z9Gd7�d8e5��Z:da;			d\d;�Z<d9ddddd9ddd:e3��dfd<�Z=		d]d>�Z>da?d?�Z@Gd@�dAejA��ZBGdB�dCeB��ZCGdD�dEejD��ZEd^dF�ZFGdG�dHeB��ZGd9dde3��dfdI�ZHdJ�ZIdK�ZJdL�ZKd_dM�ZLd_dN�ZMd`dO�ZNGdP�dQ��ZOeOdRdSdTdUdVdW�ZPdX�ZQeRdYkre
jSeQ����dSdS)aa�Module doctest -- a framework for running examples in docstrings.

In simplest use, end each module M to be tested with:

def _test():
    import doctest
    doctest.testmod()

if __name__ == "__main__":
    _test()

Then running the module as a script will cause the examples in the
docstrings to get executed and verified:

python M.py

This won't display anything unless an example fails, in which case the
failing example(s) and the cause(s) of the failure(s) are printed to stdout
(why not stderr? because stderr is a lame hack <0.2 wink>), and the final
line of output is "Test failed.".

Run it with the -v switch instead:

python M.py -v

and a detailed report of all examples tried is printed to stdout, along
with assorted summaries at the end.

You can force verbose mode by passing "verbose=True" to testmod, or prohibit
it by passing "verbose=False".  In either of those cases, sys.argv is not
examined by testmod.

There are a variety of other ways to run doctests, including integration
with the unittest framework, and support for running non-Python text
files containing doctests.  There are also many ways to override parts
of doctest's default behaviors.  See the Library Reference Manual for
details.
zreStructuredText en)!�register_optionflag�DONT_ACCEPT_TRUE_FOR_1�DONT_ACCEPT_BLANKLINE�NORMALIZE_WHITESPACE�ELLIPSIS�SKIP�IGNORE_EXCEPTION_DETAIL�COMPARISON_FLAGS�REPORT_UDIFF�REPORT_CDIFF�REPORT_NDIFF�REPORT_ONLY_FIRST_FAILURE�REPORTING_FLAGS�	FAIL_FAST�Example�DocTest�
DocTestParser�
DocTestFinder�
DocTestRunner�
OutputChecker�DocTestFailure�UnexpectedException�DebugRunner�testmod�testfile�run_docstring_examples�DocTestSuite�DocFileSuite�set_unittest_reportflags�script_from_examples�
testsource�	debug_src�debug�N)�StringIO�IncrementalNewlineDecoder)�
namedtuple�TestResultszfailed attemptedc�b�t�|dtt��z��S)N�)�OPTIONFLAGS_BY_NAME�
setdefault�len��names �./opt/alt/python311/lib64/python3.11/doctest.pyrr�s&���)�)�$��S�9L�5M�5M�0M�N�N�N�rrrrrrr
rrr
rz<BLANKLINE>z...c��d}tjD]9}|�|d��}|tt|��ur
||jz}�:|S)z�
    Return the compiler-flags associated with the future features that
    have been imported into the given namespace (globs).
    r#N)�
__future__�all_feature_names�get�getattr�
compiler_flag)�globs�flags�fname�features    r/�_extract_future_flagsr;�sV��

�E��-�+�+���)�)�E�4�(�(���g�j�%�0�0�0�0��W�*�*�E���Lr0�c�.�tj|��r|St|t��r+t	|t��t
��dg��S|�/tjtj	|��j
dStd���)a�
    Return the module specified by `module`.  In particular:
      - If `module` is a module, then return module.
      - If `module` is a string, then import and return the
        module with that name.
      - If `module` is None, then return the calling module.
        The calling module is assumed to be the module of
        the stack frame at the given depth in the call stack.
    �*N�__name__z"Expected a module, string, or None)�inspect�ismodule�
isinstance�str�
__import__�globals�locals�sys�modules�	_getframe�	f_globals�	TypeError)�module�depths  r/�_normalize_modulerN�s�������>��
�	�F�C�	 �	 �>��&�'�)�)�V�X�X��u�=�=�=�	���{�3�=��/�/�9�*�E�F�F��<�=�=�=r0c�J�tdd���|d��S�NT)r%�decode)�datas r/�_newline_convertrS�s"��$�T�4�0�0�7�7��d�C�C�Cr0c��|r�t|d��}t||��}t|dd��x}�	|jj}n#t
$rYnwxYwt
|d��r;|�|��}|�|��}t|��|fSt||���5}|���|fcddd��S#1swxYwYdS)N��
__loader__�get_data)�encoding)rN�_module_relative_pathr5�__spec__�loader�AttributeError�hasattrrWrQrS�open�read)�filename�package�module_relativerXr[�
file_contents�fs       r/�_load_testfilere�s@���
=�#�G�Q�/�/��(��(�;�;���g�|�T�:�:�:�F�C�
� �)�0����!�
�
�
���
�����6�:�&�&�	=�"�O�O�H�5�5�M�)�0�0��:�:�M�$�M�2�2�H�<�<�	
�h��	*�	*�	*�"�a��v�v�x�x��!�"�"�"�"�"�"�"�"�"�"�"�"����"�"�"�"�"�"s#�A�
A�A�0C�C�C�c�4�tjd|dz|��S)z~
    Add the given number of space characters to the beginning of
    every non-blank line in `s`, and return the result.
    z
(?m)^(?!$)� )�re�sub)�s�indents  r/�_indentrm�s���6�,��s�
�A�.�.�.r0c��t��}|\}}}tj||||���|���S)zz
    Return a string containing a traceback message for the given
    exc_info tuple (as returned by sys.exc_info()).
    )�file)r$�	traceback�print_exception�getvalue)�exc_info�excout�exc_type�exc_val�exc_tbs     r/�_exception_tracebackrx�sC���Z�Z�F� (��H�g�v�
��h���f�E�E�E�E��?�?���r0c��eZdZd�Zdd�ZdS)�	_SpoofOutc�f�tj|��}|r|�d��s|dz
}|S�N�
)r$rr�endswith)�self�results  r/rrz_SpoofOut.getvalues=���"�4�(�(���	�&�/�/�$�/�/�	��d�N�F��
r0Nc�X�|�|��tj|��dS�N)�seekr$�truncate)r�sizes  r/r�z_SpoofOut.truncate
s(���	�	�$������$�����r0r�)r?�
__module__�__qualname__rrr��r0r/rzrzs7��������� � � � � � r0rzc��t|vr||kS|�t��}t|��dksJ�dt|��}}|d}|r*|�|��rt|��}|d=ndS|d}|r-|�|��r|t|��z}|d=ndS||krdS|D]4}|�|||��}|dkrdS|t|��z
}�5dS)z_
    Essentially the only subtle case:
    >>> _ellipsis_match('aa...aa', 'aaa')
    False
    r<r#F���T)�ELLIPSIS_MARKER�splitr,�
startswithr~�find)�want�got�ws�startpos�endpos�ws      r/�_ellipsis_matchr�s0���d�"�"��s�{��
���O�	$�	$�B��r�7�7�a�<�<�<�<��#�c�(�(�f�H�
�1��A����>�>�!���	��1�v�v�H��1����5�
�2��A����<�<��?�?�	��c�!�f�f��F��2����5��&����u�
�����8�8�A�x��0�0���a�<�<��5�5��C��F�F�����4r0c�<�|���}|rd|zSdS)z)Return a commented form of the given linez# �#)�rstrip)�lines r/�
_comment_liner�@s&���;�;�=�=�D����D�y���sr0c���dt|��}}|�d��}|dkr|}|�dd|��}|dkr|}|�dd|��}|dkr|dz}|||�S)Nr#r}�:�.r))r,r��rfind)�msg�start�end�is    r/�_strip_exception_detailsr�Hs����C��H�H�3�E�������A��A�v�v�������a����A��A�v�v����	�	�#�q�#���A��A�v�v��!����u�c�z�?�r0c�,�eZdZdZd�Zdd�Zd�Zd�ZdS)�_OutputRedirectingPdbz�
    A specialized version of the python debugger that redirects stdout
    to a given stream when interacting with the user.  Stdout is *not*
    redirected when traced code is executed.
    c�t�||_d|_tj�||d���d|_dS)NFT)�stdout�nosigintr))�_OutputRedirectingPdb__out�$_OutputRedirectingPdb__debugger_used�pdb�Pdb�__init__�use_rawinput)r�outs  r/r�z_OutputRedirectingPdb.__init__hs<����
�$��������c�D��9�9�9�����r0Nc��d|_|�tj��j}tj�||��dSrP)r�rGrI�f_backr�r��	set_trace)r�frames  r/r�z_OutputRedirectingPdb.set_traceps;��#����=��M�O�O�*�E�����$��&�&�&�&�&r0c�V�|jr!tj�|��dSdSr�)r�r�r��set_continue�rs r/r�z"_OutputRedirectingPdb.set_continuevs5����	'��G� � ��&�&�&�&�&�	'�	'r0c��tj}|jt_	tjj|g|�R�|t_S#|t_wxYwr�)rGr�r�r�r��trace_dispatch)r�args�save_stdouts   r/r�z$_OutputRedirectingPdb.trace_dispatch|sK���j���Z��
�	%��7�)�$�6��6�6�6�$�C�J�J���C�J�$�$�$�$s�A�Ar�)r?r�r��__doc__r�r�r�r�r�r0r/r�r�bs_��������
���'�'�'�'�'�'�'�%�%�%�%�%r0r�c��tj|��std|z���|�d��rt	d���tjj|�d���}t|d��r+t
j�|j
��d}n�|jdkrvttj��dkrLtjddkr6t
j�tjd��d}n�t
j}ntt|d��rM|jD]E}t
j�||��}t
j�|��r|cS�Ft	d	|jz���t
j�||��S)
NzExpected a module: %r�/z1Module-relative files may not have absolute paths�__file__r#�__main__��__path__zBCan't resolve paths relative to the module %r (it has no __file__))r@rArKr��
ValueError�os�path�joinr�r]r�r?r,rG�argv�curdirr��exists)rL�	test_path�basedir�	directory�fullpaths     r/rYrY�s�����F�#�#�:��/�&�8�9�9�9����C� � �N��L�M�M�M����y���s�3�3�5�I��v�z�"�"�,��'�-�-���0�0��3���	��J�	&�	&��s�x�=�=��?�?�s�x��{�b�0�0��g�m�m�C�H�Q�K�0�0��3�G�G��i�G�G��6�:�&�&�	$�#�_�
$�
$�	��7�<�<�	�9�=�=���7�>�>�(�+�+�$�#�O�O�O�$��3�!�?�+�,�,�	,�
�7�<�<���+�+�+r0c�*�eZdZdZ		dd�Zd�Zd�ZdS)ran
    A single doctest example, consisting of source code and expected
    output.  `Example` defines the following attributes:

      - source: A single Python statement, always ending with a newline.
        The constructor adds a newline if needed.

      - want: The expected output from running the source code (either
        from stdout, or a traceback in case of exception).  `want` ends
        with a newline unless it's empty, in which case it's an empty
        string.  The constructor adds a newline if needed.

      - exc_msg: The exception message generated by the example, if
        the example is expected to generate an exception; or `None` if
        it is not expected to generate an exception.  This exception
        message is compared against the return value of
        `traceback.format_exception_only()`.  `exc_msg` ends with a
        newline unless it's `None`.  The constructor adds a newline
        if needed.

      - lineno: The line number within the DocTest string containing
        this Example where the Example begins.  This line number is
        zero-based, with respect to the beginning of the DocTest.

      - indent: The example's indentation in the DocTest string.
        I.e., the number of space characters that precede the
        example's first prompt.

      - options: A dictionary mapping from option flags to True or
        False, which is used to override default options for this
        example.  Any option flags not contained in this dictionary
        are left at their default value (as specified by the
        DocTestRunner's optionflags).  By default, no options are set.
    Nr#c��|�d��s|dz
}|r|�d��s|dz
}|�|�d��s|dz
}||_||_||_||_|�i}||_||_dSr|)r~�sourcer��linenorl�options�exc_msg)rr�r�r�r�rlr�s       r/r�zExample.__init__�s������t�$�$�	��d�N�F��	��
�
�d�+�+�	��D�L�D���w�'7�'7��'=�'=���t�O�G������	��������?�b�G��������r0c��t|��t|��urtS|j|jkoO|j|jko?|j|jko/|j|jko|j|jko|j|jkSr�)�type�NotImplementedr�r�r�rlr�r��r�others  r/�__eq__zExample.__eq__�s�����:�:�T�%�[�[�(�(�!�!��{�e�l�*�-��y�E�J�&�-��{�e�l�*�-��{�e�l�*�-��|�u�}�,�	-�
�|�u�}�,�	-r0c�\�t|j|j|j|j|jf��Sr�)�hashr�r�r�rlr�r�s r/�__hash__zExample.__hash__�s.���T�[�$�)�T�[�$�+��\�#�$�$�	$r0)Nr#r#N)r?r�r�r�r�r�r�r�r0r/rr�s[������!�!�DEF������$	-�	-�	-�$�$�$�$�$r0rc�0�eZdZdZd�Zd�Zd�Zd�Zd�ZdS)rae
    A collection of doctest examples that should be run in a single
    namespace.  Each `DocTest` defines the following attributes:

      - examples: the list of examples.

      - globs: The namespace (aka globals) that the examples should
        be run in.

      - name: A name identifying the DocTest (typically, the name of
        the object whose docstring this DocTest was extracted from).

      - filename: The name of the file that this DocTest was extracted
        from, or `None` if the filename is unknown.

      - lineno: The line number within filename where this DocTest
        begins, or `None` if the line number is unavailable.  This
        line number is zero-based, with respect to the beginning of
        the file.

      - docstring: The string that the examples were extracted from,
        or `None` if the string is unavailable.
    c��t|t��r
Jd���||_||_|���|_||_||_||_dS)z�
        Create a new DocTest containing the given examples.  The
        DocTest's globals are initialized with a copy of `globs`.
        z8DocTest no longer accepts str; use DocTestParser insteadN)	rBrC�examples�	docstring�copyr7r.r`r�)rr�r7r.r`r�r�s       r/r�zDocTest.__init__se��
�h��,�,�	J�	J�I�	J�	J�,� ��
�"����Z�Z�\�\��
���	� ��
�����r0c���t|j��dkrd}n2t|j��dkrd}ndt|j��z}d|jj�d|j�d|j�d	|j�d
|�d�S)Nr#zno examplesr)z	1 examplez%d examples�<rhz from r�� (z)>)r,r��	__class__r?r.r`r�)rr�s  r/�__repr__zDocTest.__repr__s����t�}����"�"�$�H�H�
���
�
�1�
$�
$�"�H�H�$�s�4�=�'9�'9�9�H����(�(�(�����D�M�M�M�4�;�;�;����B�	Cr0c��t|��t|��urtS|j|jkoO|j|jko?|j|jko/|j|jko|j|jko|j|jkSr�)r�r�r�r�r7r.r`r�r�s  r/r�zDocTest.__eq__*s�����:�:�T�%�[�[�(�(�!�!��}���.�+��~���0�+��z�U�[�(�+��y�E�J�&�+��}���.�	+�
�{�e�l�*�	+r0c�P�t|j|j|j|jf��Sr�)r�r�r.r`r�r�s r/r�zDocTest.__hash__5s!���T�^�T�Y��
�t�{�K�L�L�Lr0c���t|t��stS|j�|jnd}|j�|jnd}|j|j|t
|��f|j|j|t
|��fkS)Nr�)rBrr�r�r.r`�id)rr��self_lno�	other_lnos    r/�__lt__zDocTest.__lt__9sv���%��)�)�	"�!�!�"&�+�"9�4�;�;�r��$)�L�$<�E�L�L�"�	���D�M�8�R��X�X�>���U�^�Y��5�	�	�B�C�	Dr0N)	r?r�r�r�r�r�r�r�r�r�r0r/rr�st��������.���	C�	C�	C�	+�	+�	+�M�M�M�D�D�D�D�Dr0rc�P�eZdZdZejdejejz��Zejdejejzej	z��Z
ejd��jZdd�Z
d�Zdd�Zd	�Zejd
ej��Zd�Zejdej��Zd
�Zd�Zd�ZdS)rzD
    A class used to parse strings containing doctest examples.
    a�
        # Source consists of a PS1 line followed by zero or more PS2 lines.
        (?P<source>
            (?:^(?P<indent> [ ]*) >>>    .*)    # PS1 line
            (?:\n           [ ]*  \.\.\. .*)*)  # PS2 lines
        \n?
        # Want consists of any non-blank lines that do not start with PS1.
        (?P<want> (?:(?![ ]*$)    # Not a blank line
                     (?![ ]*>>>)  # Not a line starting with PS1
                     .+$\n?       # But any other line
                  )*)
        a�
        # Grab the traceback header.  Different versions of Python have
        # said different things on the first traceback line.
        ^(?P<hdr> Traceback\ \(
            (?: most\ recent\ call\ last
            |   innermost\ last
            ) \) :
        )
        \s* $                # toss trailing whitespace on the header.
        (?P<stack> .*?)      # don't blink: absorb stuff until...
        ^ (?P<msg> \w+ .*)   #     a line *starts* with alphanum.
        z^[ ]*(#.*)?$�<string>c���|���}|�|����dkr4d��fd�|�d��D����}g}d\}}|j�|��D�],}|�|||������||�d||�����z
}|�	|||��\}}}	}
|�
|��sK|�t||	|
|�t|�
d����z|�����||�d|���|�����z
}|���}��.|�||d���|S)a=
        Divide the given string into examples and intervening text,
        and return them as a list of alternating Examples and strings.
        Line numbers for the Examples are 0-based.  The optional
        argument `name` is a name identifying this string, and is only
        used for error messages.
        r#r}c�$��g|]}|�d���
Sr�r�)�.0�l�
min_indents  �r/�
<listcomp>z'DocTestParser.parse.<locals>.<listcomp>�s!���K�K�K�1��*�+�+��K�K�Kr0�r#r#rl)r�rlr�N)�
expandtabs�_min_indentr�r��_EXAMPLE_RE�finditer�appendr��count�_parse_example�_IS_BLANK_OR_COMMENTrr,�groupr�)r�stringr.�output�charnor��mr�r�r�r�r�s           @r/�parsezDocTestParser.parsevs�����"�"�$�$���%�%�f�-�-�
���>�>��Y�Y�K�K�K�K����T�8J�8J�K�K�K�L�L�F��������!�*�*�6�2�2�	�	�A��M�M�&�����	�	�!1�2�3�3�3��f�l�l�4�������;�;�;�F��(�(��D�&�9�9�
-�V�W�d�G��,�,�V�4�4�
7��
�
�w�v�t�W�+1�+5�c�!�'�'�(�:K�:K�6L�6L�+L�,3� 5� 5� 5�7�7�7�

�f�l�l�4������A�E�E�G�G�<�<�<�F��U�U�W�W�F�F��
�
�f�V�W�W�o�&�&�&��
r0c�R�t|�||��|||||��S)a"
        Extract all doctest examples from the given string, and
        collect them into a `DocTest` object.

        `globs`, `name`, `filename`, and `lineno` are attributes for
        the new `DocTest` object.  See the documentation for `DocTest`
        for more information.
        )r�get_examples)rr�r7r.r`r�s      r/�get_doctestzDocTestParser.get_doctest�s3���t�(�(���6�6���X�v�v�7�7�	7r0c�B�d�|�||��D��S)a�
        Extract all doctest examples from the given string, and return
        them as a list of `Example` objects.  Line numbers are
        0-based, because it's most common in doctests that nothing
        interesting appears on the same line as opening triple-quote,
        and so the first interesting line is called "line 1" then.

        The optional argument `name` is a name identifying this
        string, and is only used for error messages.
        c�<�g|]}t|t���|��Sr�)rBr)r��xs  r/r�z.DocTestParser.get_examples.<locals>.<listcomp>�s6��+�+�+�a��a��)�)�+��+�+�+r0)r)rr�r.s   r/rzDocTestParser.get_examples�s0��+�+�4�:�:�f�d�3�3�+�+�+�	+r0c	�F�
�t|�d�����
|�d���d��}|�|�
||��|�|dd�d�
zdz||��d��
fd�|D����}|�d	��}|�d��}t|��dkrt
jd
|d��r|d=|�|d�
z||t|��z��d��
fd�|D����}|j�|��}|r|�d
��}nd}|�	|||��}	||	||fS)a�
        Given a regular expression match from `_EXAMPLE_RE` (`m`),
        return a pair `(source, want)`, where `source` is the matched
        example's source code (with prompts and indentation stripped);
        and `want` is the example's expected output (with indentation
        stripped).

        `name` is the string's name, and `lineno` is the line number
        where the example starts; both are used for error messages.
        rlr�r}r)Nrhr�c�*��g|]}|�dzd���S)rfNr�)r��slrls  �r/r�z0DocTestParser._parse_example.<locals>.<listcomp>�s%���A�A�A�b�B�v�a�x�y�y�M�A�A�Ar0r�z *$r�c�$��g|]}|�d���
Sr�r�)r��wlrls  �r/r�z0DocTestParser._parse_example.<locals>.<listcomp>�s!���;�;�;�"�"�V�W�W�+�;�;�;r0r�)
r,r�r��_check_prompt_blank�
_check_prefixr�ri�match�
_EXCEPTION_RE�
_find_options)rrr.r��source_linesr�r��
want_linesr�r�rls          @r/r�zDocTestParser._parse_example�s�����Q�W�W�X�&�&�'�'���w�w�x�(�(�.�.�t�4�4��� � ��v�t�V�D�D�D����<����+�S��Z�#�-=�t�V�L�L�L����A�A�A�A�L�A�A�A�B�B��
�w�w�v�����Z�Z��%�%�
��z�?�?�Q���2�8�F�J�r�N�#C�#C���2�����:�s�6�z�4�!�C��$5�$5�5�	7�	7�	7��y�y�;�;�;�;�
�;�;�;�<�<��
��$�$�T�*�*���	��g�g�e�n�n�G�G��G��$�$�V�T�6�:�:���w��g�-�-r0z#\s*doctest:\s*([^\n\'"]*)$c
���i}|j�|��D]�}|�d���dd�����}|D]\}|ddvs|dd�t
vrt
d|dz�d|�d	|�����t
|dd�}|dd
k||<�]��|r-|�|��rt
d|�d|�d|�����|S)a
        Return a dictionary containing option overrides extracted from
        option directives in the given source string.

        `name` is the string's name, and `lineno` is the line number
        where the example starts; both are used for error messages.
        r)�,rhr#z+-N�line z of the doctest for z has an invalid option: �+z4 has an option directive on a line with no example: )�_OPTION_DIRECTIVE_REr�r��replacer�r*r�r�)	rr�r.r�r�r�option_strings�option�flags	         r/rzDocTestParser._find_options�s1�����*�3�3�F�;�;�		3�		3�A��W�W�Q�Z�Z�/�/��S�9�9�?�?�A�A�N�(�
3�
3���1�I�T�)�)��1�2�2�J�&9�9�9�$�*�&,�Q�h�h�h����f�f�&>�?�?�?�+�6�!�"�"�:�6��!'���c�!1���
�
�
3��	5�t�0�0��8�8�	5��*�$�f�f�d�d�d�F�F�4�5�5�
5��r0z
^([ ]*)(?=\S)c��d�|j�|��D��}t|��dkrt|��SdS)z;Return the minimum indentation of any non-blank line in `s`c�,�g|]}t|����Sr�)r,)r�rls  r/r�z-DocTestParser._min_indent.<locals>.<listcomp>
s��H�H�H�6�3�v�;�;�H�H�Hr0r#)�
_INDENT_RE�findallr,�min)rrk�indentss   r/r�zDocTestParser._min_indentsG��H�H�T�_�-D�-D�Q�-G�-G�H�H�H���w�<�<�!����w�<�<���1r0c���t|��D]V\}}t|��|dzkr;||dzdkr,td||zdz�d|�d|||dz��d|������Wd	S)
a

        Given the lines of a source string (including prompts and
        leading indentation), check to make sure that every prompt is
        followed by a space character.  If any line is not followed by
        a space character, then raise ValueError.
        rfrUrhrr)� of the docstring for z lacks blank after z: N)�	enumerater,r�)r�linesrlr.r�r�r�s       r/rz!DocTestParser._check_prompt_blanks���!��'�'�	@�	@�G�A�t��4�y�y�F�1�H�$�$��f�Q�h��3�)>�)>� �j�"(��(�1�*�*�*�d�d�d�"&�v�f�Q�h��"7�"7�"7���"?�@�@�@��	@�	@r0c	��t|��D]:\}}|r3|�|��std||zdz�d|�d|������;dS)z�
        Check that every line in the given list starts with the given
        prefix; if any line does not, then raise a ValueError.
        rr)r&z& has inconsistent leading whitespace: N)r'r�r�)rr(�prefixr.r�r�r�s       r/rzDocTestParser._check_prefix!sw��
!��'�'�	;�	;�G�A�t��
;�D�O�O�F�3�3�
;� �j�"(��(�1�*�*�*�d�d�d�D�D�":�;�;�;��	;�	;r0N)r�)r?r�r�r�ri�compile�	MULTILINE�VERBOSEr��DOTALLrrr�rrrr�rrr!r�rrr�r0r/rrFsI���������"�*���\�B�J�
&�(�(�K�,�B�J� ��Z�"�,�
&���
2�4�4�M�&�2�:�o�6�6�<��%�%�%�%�N
7�
7�
7�+�+�+�+�*.�*.�*.�f&�2�:�&D�&(�l�4�4�����8���,�b�l�;�;�J����@�@�@�	;�	;�	;�	;�	;r0rc�X�eZdZdZde��ddfd�Zdd�Zd�Zd�Zd	�Z	d
�Z
d�ZdS)
ra<
    A class used to extract the DocTests that are relevant to a given
    object, from its docstring and the docstrings of its contained
    objects.  Doctests can currently be extracted from the following
    object types: modules, functions, classes, methods, staticmethods,
    classmethods, and properties.
    FTc�>�||_||_||_||_dS)at
        Create a new doctest finder.

        The optional argument `parser` specifies a class or
        function that should be used to create new DocTest objects (or
        objects that implement the same interface as DocTest).  The
        signature for this factory function should match the signature
        of the DocTest constructor.

        If the optional argument `recurse` is false, then `find` will
        only examine the given object, and not any contained objects.

        If the optional argument `exclude_empty` is false, then `find`
        will include tests for objects with empty docstrings.
        N)�_parser�_verbose�_recurse�_exclude_empty)r�verbose�parser�recurse�
exclude_emptys     r/r�zDocTestFinder.__init__:s'��"�����
���
�+����r0Nc	���|�2t|dd��}|�tdt|�������|durd}n|�tj|��}	tj|��}|s-tj|��}|d|dd�zdksd}|�d}nH|�tj||j	��}ntj|��}|sd}n#t$rd}YnwxYw|�|�i}n.|j	���}n|���}|�|�|��d|vrd|d<g}|�
||||||i��|���|S)	aj
        Return a list of the DocTests that are defined by the given
        object's docstring, or by any of its contained objects'
        docstrings.

        The optional parameter `module` is the module that contains
        the given object.  If the module is not specified or is None, then
        the test finder will attempt to automatically determine the
        correct module.  The object's module is used:

            - As a default namespace, if `globs` is not specified.
            - To prevent the DocTestFinder from extracting DocTests
              from objects that are imported from other modules.
            - To find the name of the file containing the object.
            - To help find the line number of the object within its
              file.

        Contained objects whose module does not match `module` are ignored.

        If `module` is False, no attempt to find the module will be made.
        This is obscure, of use mostly in tests:  if `module` is False, or
        is None but cannot be found automatically, then all objects are
        considered to belong to the (non-existent) module, so all contained
        objects will (recursively) be searched for doctests.

        The globals for each DocTest is formed by combining `globs`
        and `extraglobs` (bindings in `extraglobs` override bindings
        in `globs`).  A new copy of the globals dictionary is created
        for each DocTest.  If `globs` is not specified, then it
        defaults to the module's `__dict__`, if specified, or {}
        otherwise.  If `extraglobs` is not specified, then it defaults
        to {}.

        Nr?zHDocTestFinder.find: name must be given when obj.__name__ doesn't exist: Fr#���z<]>r�)r5r�r�r@�	getmodule�
getsourcefile�getfile�	linecache�getlines�__dict__rKr��update�_find�sort)	r�objr.rLr7�
extraglobsror�testss	         r/r�zDocTestFinder.findPs���H�<��3�
�D�1�1�D��|� �j�"&�s�)�)�)�".�/�/�/��U�?�?��F�F�
�^��&�s�+�+�F�
	(��(��-�-�D��
?���s�+�+���A�w�t�B�C�C�y�(�E�1�1�$�4��|�#����%�$-�#5�d�F�O�#L�#L�L�L�$-�#5�d�#;�#;�L�#�(�#'�L���+�	 �	 �	 ��L�L�L�	 ����0�=��~������,�,�.�.����J�J�L�L�E��!��L�L��$�$�$��U�"�"� *�E�*�����
�
�5�#�t�V�\�5�"�E�E�E�
	�
�
�����s�C�C �C c�J�|�dStj|���|tj|��uStj|��r|j|juStj|��stj|��rBt|d��r
|jj	}nt|d��r|j	}ndS|j
|kStj|��r|j
|j	kSt|d��r|j
|j	kSt|t��rdStd���)zY
        Return true if the given object is defined in the given
        module.
        NT�__objclass__r�z"object must be a class or function)r@r;�
isfunctionr@�__globals__�ismethoddescriptor�ismethodwrapperr]rHr�r?�isclassrB�propertyr�)rrL�object�obj_mods    r/�_from_modulezDocTestFinder._from_module�s;��
�>��4�
�
�v�
&�
&�
2��W�.�v�6�6�6�6�
�
��
'�
'�	C��?�f�&8�8�8��(��0�0�	C��%�f�-�-�	C��v�~�.�.�
� �-�8������.�.�
� �+����t��?�g�-�-�
�_�V�
$�
$�	C��?�f�&7�7�7�
�V�\�
*�
*�	C��?�f�&7�7�7�
���
)�
)�	C��4��A�B�B�Br0c�z�|}	tj|��}n#t$rYnwxYwtj|��S)zL
        Safely unwrap objects and determine if they are functions.
        )r@�unwrapr��	isroutine)rrD�
maybe_routines   r/�_is_routinezDocTestFinder._is_routine�sP���
�	�#�N�=�9�9�M�M���	�	�	��D�	����� ��/�/�/s��
&�&c
���|jrtd|z��t|��|vrdSd|t|��<|�|||||��}|�|�|��tj|��r�|jr�|j�	��D]f\}	}
|�d|	��}	|�
|
��stj|
��r1|�||
��r|�
||
|	||||���gtj|��r�|jr�t|di���	��D]�\}	}
t|	t ��st#dt%|	�������tj|
��s\tj|
��sHtj|
��s4t|
t ��st#dt%|
�������|�d|	��}	|�
||
|	||||����tj|��r�|jr�|j�	��D]�\}	}
t|
t(t*f��r|
j}
tj|
��s)tj|
��st|
t.��r8|�||
��r"|�d|	��}	|�
||
|	||||����dSdSdS)	zm
        Find tests for the given object and any contained objects, and
        add them to `tests`.
        zFinding tests in %sNr)r��__test__z3DocTestFinder.find: __test__ keys must be strings: z^DocTestFinder.find: __test__ values must be strings, functions, methods, classes, or modules: z
.__test__.)r2�printr��	_get_testr�r@rAr3r@�itemsrVrMrQrBr5rBrCr�r�rT�staticmethod�classmethod�__func__rN)rrFrDr.rLrr7�seen�test�valname�vals           r/rBzDocTestFinder._find�s^��
�=�	0��'�$�.�/�/�/��c�7�7�d�?�?��F���R��W�W�
��~�~�c�4����E�E�����L�L�������C� � �	,�T�]�	,� #�� 2� 2� 4� 4�
,�
,����%)�T�T�7�7�3���%�%�c�*�*�,�g�o�c�.B�.B�,��%�%�f�c�2�2�,��J�J�u�c�7�F�L�$�d�,�,�,����C� � �	(�T�]�	(� '��Z�� <� <� B� B� D� D�

(�

(����!�'�3�/�/�7�$�*�&*�7�m�m�m�&6�7�7�7� �)�#�.�.�3�'�/�#�2F�2F�3��(��-�-�3�1;�C��1E�1E�3�$�*�'+�3�i�i�i�&2�3�3�3�/3�d�d�G�G�<���
�
�5�#�w��� �$�(�(�(�(��?�3���	,�D�M�	,� #�� 2� 2� 4� 4�
,�
,�����c�L�+�#>�?�?�'��,�C��&�s�+�+�,�w��s�/C�/C�,� ��h�/�/�,��'�'���4�4�,�*.���w�w�7�G��J�J�u�c�7�F�L�$�d�,�,�,��	,�	,�	,�	,�
,�
,r0c��t|t��r|}nP	|j�d}n+|j}t|t��st|��}n#ttf$rd}YnwxYw|�||��}|jr|sdS|�d}n0t|dd��p|j}|dd�dkr
|dd�}|j	�
|||||��S)zs
        Return a DocTest for the given object, if it defines a docstring;
        otherwise, return None.
        Nr�r�����.pycr�)rBrCr�rKr\�_find_linenor4r5r?r1r)	rrDr.rLr7rr�r�r`s	         r/rZzDocTestFinder._get_tests���c�3���	��I�I�
��;�&� "�I�I� #��I�%�i��5�5�3�$'�	�N�N�	����~�.�
�
�
��	�	�	�
�����"�"�3��5�5����	�y�	��4��>��H�H��v�z�4�8�8�K�F�O�H�����}��&�&�#�C�R�C�=���|�'�'�	�5�$�(0�&�:�:�	:s�5A�A&�%A&c
��d}t|dd��}tj|��r|�d}tj|��rl|�j|�dSt	jdt	jt|dd����z��}t|��D]\}}|�|��r|}n�tj	|��r|j
}t|t��r|j
}tj|��r*t|dd��rtj|��j}tj|��r|j}tj|��r|j}tj|��r
|jdz
}|�Z|�|dzSt	jd��}t/|t1|����D]!}|�||��r|cS�"dS)	z�
        Return a line number of the given object's docstring.

        Returns `None` if the given object does not have a docstring.
        Nr�r#z^\s*class\s*%s\br?�-r)z(^|.*:)\s*\w*("|\'))r5r@rArMrir+�escaper'r�ismethodr^rBrN�fgetrIrS�__code__�istraceback�tb_frame�isframe�f_code�iscode�co_firstlineno�ranger,)rrDrr�r��patr�r�s        r/rfzDocTestFinder._find_linenoAs������C��D�1�1�	���C� � �	�Y�%:��F�
�?�3���	�I�$9��#��t��*�0��Y�w�s�J��'D�'D�E�E�F�G�G�C�$�\�2�2�
�
���4��9�9�T�?�?���F��E��
��C� � �4���#��c�8�$�$�	��(�C���c�"�"�	/�w�s�I�t�'D�'D�	/��.��%�%�.�C���s�#�#�7�3�<�S��?�3���1�s�z���>�#���	,��'�!�+�F����#��a�x���*�3�4�4�C����L�(9�(9�:�:�
"�
"���9�9�\�&�1�2�2�"�!�M�M�M�"��tr0�NNNN)r?r�r�r�rr�r�rQrVrBrZrfr�r0r/rr1s��������� %�]�]�_�_��T�,�,�,�,�,d�d�d�d�LC�C�C�:	0�	0�	0�;,�;,�;,�z$:�$:�$:�L4�4�4�4�4r0rc��eZdZdZdZdd�Zd�Zd�Zd�Zd	�Z	d
�Z
d�Zd�Ze
jd
��Zdd�Zdd�Zdd�Zd�ZdS)ra3	
    A class used to run DocTest test cases, and accumulate statistics.
    The `run` method is used to process a single DocTest case.  It
    returns a tuple `(f, t)`, where `t` is the number of test cases
    tried, and `f` is the number of test cases that failed.

        >>> tests = DocTestFinder().find(_TestClass)
        >>> runner = DocTestRunner(verbose=False)
        >>> tests.sort(key = lambda test: test.name)
        >>> for test in tests:
        ...     print(test.name, '->', runner.run(test))
        _TestClass -> TestResults(failed=0, attempted=2)
        _TestClass.__init__ -> TestResults(failed=0, attempted=2)
        _TestClass.get -> TestResults(failed=0, attempted=2)
        _TestClass.square -> TestResults(failed=0, attempted=1)

    The `summarize` method prints a summary of all the test cases that
    have been run by the runner, and returns an aggregated `(f, t)`
    tuple:

        >>> runner.summarize(verbose=1)
        4 items passed all tests:
           2 tests in _TestClass
           2 tests in _TestClass.__init__
           2 tests in _TestClass.get
           1 tests in _TestClass.square
        7 tests in 4 items.
        7 passed and 0 failed.
        Test passed.
        TestResults(failed=0, attempted=7)

    The aggregated number of tried examples and failed examples is
    also available via the `tries` and `failures` attributes:

        >>> runner.tries
        7
        >>> runner.failures
        0

    The comparison between expected outputs and actual outputs is done
    by an `OutputChecker`.  This comparison may be customized with a
    number of option flags; see the documentation for `testmod` for
    more information.  If the option flags are insufficient, then the
    comparison may also be customized by passing a subclass of
    `OutputChecker` to the constructor.

    The test runner's display output can be controlled in two ways.
    First, an output function (`out) can be passed to
    `TestRunner.run`; this function will be called with strings that
    should be displayed.  It defaults to `sys.stdout.write`.  If
    capturing the output is not sufficient, then the display output
    can be also customized by subclassing DocTestRunner, and
    overriding the methods `report_start`, `report_success`,
    `report_unexpected_exception`, and `report_failure`.
    zF**********************************************************************Nr#c���|p
t��|_|�dtjv}||_||_||_d|_d|_i|_	t��|_dS)ac
        Create a new test runner.

        Optional keyword arg `checker` is the `OutputChecker` that
        should be used to compare the expected outputs and actual
        outputs of doctest examples.

        Optional keyword arg 'verbose' prints lots of stuff if true,
        only failures if false; by default, it's true iff '-v' is in
        sys.argv.

        Optional argument `optionflags` can be used to control how the
        test runner compares expected output to actual output, and how
        it displays failures.  See the documentation for `testmod` for
        more information.
        N�-vr#)r�_checkerrGr�r2�optionflags�original_optionflags�tries�failures�_name2ftrz�_fakeout)r�checkerr5rzs    r/r�zDocTestRunner.__init__�sd��" �2�=�?�?��
��?��c�h�&�G���
�&���$/��!���
���
���
�"����
�
�
r0c���|jrf|jr:|dt|j��zdzt|j��z��dS|dt|j��zdz��dSdS)z�
        Report that the test runner is about to process the given
        example.  (Only displays a message if verbose=True)
        zTrying:
zExpecting:
zExpecting nothing
N)r2r�rmr�)rr�r`�examples    r/�report_startzDocTestRunner.report_start�s���
�=�	+��|�
+���K�'�'�.�"9�"9�9�"�#�%,�W�\�%:�%:�;�<�<�<�<�<���K�'�'�.�"9�"9�9�)�*�+�+�+�+�+�	+�	+r0c�.�|jr
|d��dSdS)zt
        Report that the given example ran successfully.  (Only
        displays a message if verbose=True)
        zok
N)r2�rr�r`r�r�s     r/�report_successzDocTestRunner.report_success�s)��
�=�	��C��K�K�K�K�K�	�	r0c��||�||��|j�|||j��z��dS)z7
        Report that the given example failed.
        N)�_failure_headerry�output_differencerzr�s     r/�report_failurezDocTestRunner.report_failure�sY��	��D� � ��w�/�/��M�+�+�G�S�$�:J�K�K�
L�	M�	M�	M�	M�	Mr0c��||�||��dztt|����z��dS)zO
        Report that the given example raised an unexpected exception.
        zException raised:
N)r�rmrx�rr�r`r�rss     r/�report_unexpected_exceptionz)DocTestRunner.report_unexpected_exception�s[��	��D� � ��w�/�/�!�
"�$+�,@��,J�,J�$K�$K�
L�	M�	M�	M�	M�	Mr0c��|jg}|jrL|j�|j�|j|jzdz}nd}|�d|j�d|�d|j����n(|�d|jdz�d|j����|�d��|j}|�t
|����d�|��S)	Nr)�?zFile "�", line �, in zLine zFailed example:r})�DIVIDERr`r�r�r.r�rmr�)rr`r�r�r�r�s      r/r�zDocTestRunner._failure_header�s����|�n���=�	I��{�&�7�>�+E���w�~�5��9������J�J�J��
�
�
�v�v�v�t�y�y�:�
;�
;�
;�
;�
�J�J�J�7�>�!�+;�+;�+;�T�Y�Y�G�H�H�H��
�
�$�%�%�%�����
�
�7�6�?�?�#�#�#��y�y��~�~�r0c
�&��dx}}|j}td��\}}}	|jj}
t	|j��D�]#\}}|jtzo|dk}
||_|jrC|j���D])\}}|r|xj|zc_�|xj|zc_�*|jtzr�||dz
}|
s|�
|||��d|j|fz}	tt|j|d|d��|j��|j���d}n=#t$$r�t'j��}|j���YnxYw|j���}|j�d��|}|�|
|j||j��r|}�n t3j|dd��}t7|dt8��r`|dj�d	�|dj�d
|dj�d	�f�t?�fd�t	|��D����}||d�}d� |��}|
s|tC|��z
}|j"�|	}n\|
|j"||j��r|}nB|jtFzr3|
tI|j"��tI|��|j��r|}||ur|
s|�%||||��nT||ur |
s|�&||||��|dz
}n0||	ur |
s|�'||||��|dz
}nJd|f���|r|jtPzrn��%||_|�)|||��tU||��S)a�
        Run the examples in `test`.  Write the outcome of each example
        with one of the `DocTestRunner.report_*` methods, using the
        writer function `out`.  `compileflags` is the set of compiler
        flags that should be used to execute examples.  Return a tuple
        `(f, t)`, where `t` is the number of examples tried, and `f`
        is the number of examples that failed.  The examples are run
        in the namespace `test.globs`.
        r#rUr)z<doctest %s[%d]>�singleTNr<r�r�c3�L�K�|]\}}|�����|V��dSr�)r�)r��indexr��exception_line_prefixess   �r/�	<genexpr>z&DocTestRunner.__run.<locals>.<genexpr>ksN�����)�)�'�E�4��?�?�+B�C�C�)��)�)�)�)�)�)r0r�Fzunknown outcome)+rzrsry�check_outputr'r�r
r�r[rr�r.�execr+r�r7�debuggerr��KeyboardInterruptrGrsrrrr�r�rp�format_exception_only�
issubclass�SyntaxErrorr�r��nextr�rxr�rr�r�r�r�r�_DocTestRunner__record_outcomer')rr`�compileflagsr�r}r|r{�SUCCESS�FAILURE�BOOM�check�
examplenumr��quiet�
optionflagrbr`�	exceptionr��outcome�formatted_ex�
exc_msg_indexr�r�s                       @r/�__runzDocTestRunner.__runs�������5� $�/��!&�q������$��
�*��$-�T�]�#;�#;�o	�o	��J���%�(A�A�"���\�
� 4�D����
8�)0��)>�)>�)@�)@�8�8�%�Z���8��(�(�J�6�(�(�(��(�(�Z�K�7�(�(�(���$�&�
��
�Q�J�E��
6��!�!�#�t�W�5�5�5�
*�T�Y�
�,C�C�H�


-��W�W�^�X�x�)�4�1�1�26�*�>�>�>��
�*�*�,�,�,� �	�	��$�
�
�
��
-��L�N�N�	��
�*�*�,�,�,�,�,�����-�(�(�*�*�C��M�"�"�1�%�%�%��G�� ��5���s�D�,<�=�=�&�%�G�� )�>�	�"�1�"�
�N���i��l�K�8�8�@�%�Q�<�4�7�7�7�$�Q�<�2�Q�Q�Y�q�\�5N�Q�Q�Q�/�+�%)�)�)�)�)�+4�\�+B�+B�)�)�)�%�%�M�
$0�
���#?�L��'�'�,�/�/���;��/�	�:�:�:�C��?�*�"�G�G��U�7�?�G�T�5E�F�F�*�%�G�G��%�(?�?�*��u�5�g�o�F�F�5�g�>�>�!�-�/�/�*�#*���'�!�!��A��'�'��T�7�C�@�@�@���G�#�#��A��'�'��T�7�C�@�@�@��A�
����D����@��4�4�S�$��5>�@�@�@��A�
���:�0�'�:�:�:�u��
�D�,�y�8�
����0���	
���d�H�e�4�4�4��8�U�+�+�+s
�'AD.�.8E(c��|j�|jd��\}}||z||zf|j|j<|xj|z
c_|xj|z
c_dS)z{
        Record the fact that the given DocTest (`test`) generated `f`
        failures out of `t` tried examples.
        r�N)r~r4r.r}r|)rr`rd�t�f2�t2s      r/�__record_outcomezDocTestRunner.__record_outcome�s^��
��"�"�4�9�e�4�4���B�$%�b�D�!�B�$�<��
�d�i� ��
�
���
�
��
�
�a��
�
�
�
r0z.<doctest (?P<name>.+)\[(?P<examplenum>\d+)\]>$c�F�|j�|��}|rp|�d��|jjkrM|jjt
|�d����}|j�d���S|�	||��S)Nr.r�T��keepends)
�%_DocTestRunner__LINECACHE_FILENAME_RErr�r`r.r��intr��
splitlines�save_linecache_getlines)rr`�module_globalsrr�s     r/�__patched_linecache_getlinesz*DocTestRunner.__patched_linecache_getlines�s����(�.�.�x�8�8���	J�������D�I�N�2�2��i�(��Q�W�W�\�-B�-B�)C�)C�D�G��>�,�,�d�,�;�;�;��/�/��.�I�I�Ir0Tc� �	�
�||_|�t|j��}tj�
|�/�
j�	�	��	���dkr�
j}n�	�
fd�}|jt_tj	��}tj}t�
��|_
|j
���|j
jt_tj|_|jt_tj}tjt_	|�|||���
t_|t_tj|��|jt_|t_|r%|j���ddl}d|_SS#�
t_|t_tj|��|jt_|t_|r$|j���ddl}d|_wxYw)aJ
        Run the examples in `test`, and display the results using the
        writer function `out`.

        The examples are run in the namespace `test.globs`.  If
        `clear_globs` is true (the default), then this namespace will
        be cleared after the test runs, to help with garbage
        collection.  If you would like to examine the namespace after
        the test completes, then use `clear_globs=False`.

        `compileflags` gives the set of flags that should be used by
        the Python compiler when running the examples.  If not
        specified, then it will default to the set of future-import
        flags that apply to `globs`.

        The output of each example is checked using
        `DocTestRunner.check_output`, and the results are formatted by
        the `DocTestRunner.report_*` methods.
        N�utf-8c�z��t|��d�����}��|��dS)N�backslashreplace)rC�encode�write)rkrXr�s ��r/r�zDocTestRunner.run.<locals>.out�s;����A�H�H�X�/A�B�B�H�M�M�A��%�%�a�(�(�(�(�(r0r#)r`r;r7rGr�rX�lowerr�r�gettracer�r�r�r��resetr>r?r��*_DocTestRunner__patched_linecache_getlines�displayhook�__displayhook__�_DocTestRunner__run�settrace�clear�builtins�_)rr`r�r��clear_globs�
save_trace�save_set_trace�save_displayhookr�rXr�s         @@r/�runzDocTestRunner.run�s�����(��	���0���<�<�L��j���;�"�+�H���8�>�>�#3�#3�w�#>�#>�!�'���)�)�)�)�)�)��]��
��\�^�^�
����-�k�:�:��
��
�������
�/��
�(1�'9��$�!�>�	���?���-���	"��:�:�d�L�#�6�6�$�C�J�*�C�M��L��$�$�$�!%�!=�I��.�C�O��
"��
� � �"�"�"�����!��
�
�
"��%�C�J�*�C�M��L��$�$�$�!%�!=�I��.�C�O��
"��
� � �"�"�"�����!��
�!�!�!�!s
�F�A1H
c��|�|j}g}g}g}dx}}|j���D]k}|\}\}	}
|	|
ksJ�||
z
}||	z
}|
dkr|�|���8|	dkr|�||
f���V|�|���l|r�|rFt	t|��d��|���|D]}t	d|���|rMt	t|��d��|���|D]\}}t	d||fz���|ret	|j��t	t|��d��|���|D]\}\}	}
t	d|	|
|fz���|r9t	|d	t|j��d
��t	||z
d|d��|rt	d
|d��n|rt	d��t||��S)a�
        Print a summary of all the test cases that have been run by
        this DocTestRunner, and return a tuple `(f, t)`, where `f` is
        the total number of failed examples, and `t` is the total
        number of tried examples.

        The optional `verbose` argument controls how detailed the
        summary is.  If the verbosity is not specified, then the
        DocTestRunner's verbosity is used.
        Nr#zitems had no tests:z   zitems passed all tests:z %3d tests in %szitems had failures:z %3d of %3d in %sztests inzitems.z
passed andzfailed.z***Test Failed***z	failures.zTest passed.)	r2r~r[r�rYr,rCr�r')
rr5�notests�passed�failed�totalt�totalfr	r.rdr��thingr�s
             r/�	summarizezDocTestRunner.summarize�sj���?��m�G�������������$�$�&�&�
	!�
	!�A��L�D�&�1�a���6�6�6�6��a�K�F��a�K�F��A�v�v����t�$�$�$�$��a����
�
��a�y�*�*�*�*��
�
�a� � � � ��
	?��
(��c�'�l�l�$9�:�:�:�������$�(�(�E��%��'�'�'�'��
?��c�&�k�k�#<�=�=�=����
�
�
�$*�?�?�L�E�5��,��u�~�=�>�>�>�>��	;��$�,�����#�f�+�+�4�5�5�5��K�K�M�M�M�!'�
;�
;�
��v��1��)�Q��5�M�9�:�:�:�:��	D��&�*�c�$�-�&8�&8�(�C�C�C��&�6�/�<���C�C�C��	"��%�v�{�;�;�;�;�
�	"��.�!�!�!��6�6�*�*�*r0c��|j}|j���D](\}\}}||vr||\}}||z}||z}||f||<�)dSr�)r~r[)rr��dr.rdr�r�r�s        r/�mergezDocTestRunner.merge7sq���M��!�N�0�0�2�2�		�		�L�D�&�1�a��q�y�y�
�4����B���F����F����d�A�d�G�G�		�		r0)NNr#r��NNT)r?r�r�r�r�r�r�r�r�r�r�r�r�rir+r�r�r�r�r�r�r0r/rr{s!������6�6�r�G�$�$�$�$�H+�+�+����M�M�M�M�M�M����(L,�L,�L,�\���)�b�j�*F�G�G��J�J�J�J�D"�D"�D"�D"�R4+�4+�4+�4+�r����r0rc�*�eZdZdZd�Zd�Zd�Zd�ZdS)ra_
    A class used to check the whether the actual output from a doctest
    example matches the expected output.  `OutputChecker` defines two
    methods: `check_output`, which compares a given pair of outputs,
    and returns true if they match; and `output_difference`, which
    returns a string describing the differences between two outputs.
    c�J�t|�dd��d��S)z=
        Convert string to hex-escaped ASCII string.
        �ASCIIr�)rCr�)rrks  r/�_toAsciizOutputChecker._toAsciiLs#���1�8�8�G�%7�8�8�'�B�B�Br0c�N�|�|��}|�|��}||krdS|tzs||fdkrdS||fdkrdS|tzsNtjdtjt��zd|��}tjdd|��}||krdS|tzrVd�|�	����}d�|�	����}||krdS|tzrt||��rdSdS)	a�
        Return True iff the actual output from an example (`got`)
        matches the expected output (`want`).  These strings are
        always considered to match if they are identical; but
        depending on what option flags the test runner is using,
        several non-exact match types are also possible.  See the
        documentation for `TestRunner` for more information about
        option flags.
        T)zTrue
z1
)zFalse
z0
z(?m)^%s\s*?$r�z(?m)^[^\S\n]+$rhF)r�rrrirjri�BLANKLINE_MARKERrr�r�rr��rr�r�rzs    r/r�zOutputChecker.check_outputRsI�� �m�m�C� � ���}�}�T�"�"���$�;�;��4��4�4�	��D�z�.�.�.��t��D�z�/�/�/��t��3�3�	��6�/�B�I�6F�,G�,G�G��d�$�$�D��&�*�B��4�4�C��d�{�{��t�
�-�-�	��(�(�3�9�9�;�;�'�'�C��8�8�D�J�J�L�L�)�)�D��d�{�{��t���!�	��t�S�)�)�
��t��ur0c��|ttztzzsdS|tzrdS|�d��dko|�d��dkS)NFTr}r<)r
rrr�r�s    r/�_do_a_fancy_diffzOutputChecker._do_a_fancy_diff�si���l�*�+�*�+�,�	��5���%�	��4��z�z�$���!�#�;��	�	�$���!�(;�;r0c�p�|j}|tzstjdt|��}|�|||���r#|�d���}|�d���}|tzr1tj	||d���}t|��dd�}d}n�|tzr1tj||d���}t|��dd�}d}nY|tzrEtjtj�	��}	t|	�||����}d
}n
Jd���d
|zt#d�|����zS|r$|r"dt#|���dt#|����S|rdt#|��zS|rdt#|��zSdS)z�
        Return a string describing the differences between the
        expected output for a given example (`example`) and the actual
        output (`got`).  `optionflags` is the set of option flags used
        to compare `want` and `got`.
        z(?m)^[ ]*(?=
)Tr�r<)�nNz#unified diff with -expected +actualz-context diff with expected followed by actual)�charjunkzndiff with -expected +actualr#zBad diff optionzDifferences (%s):
r�z
Expected:
zGot:
zExpected:
%sGot nothing
zExpected nothing
Got:
%szExpected nothing
Got nothing
)r�rrirjr�r�r�r
�difflib�unified_diff�listr�context_diffr�Differ�IS_CHARACTER_JUNK�comparermr�)
rr�r�rzr�r�	got_lines�diff�kind�engines
          r/r�zOutputChecker.output_difference�s����|���3�3�	C��&�*�,<�c�B�B�C�� � ��s�K�8�8�	I����$��7�7�J������5�5�I��\�)�

,��+�J�	�Q�G�G�G���D�z�z�!�"�"�~��<����|�+�	
,��+�J�	�Q�G�G�G���D�z�z�!�"�"�~��F����|�+�
,� ���1J�K�K�K���F�N�N�:�y�A�A�B�B��5���+�+�+�+�q�(�4�/�'�"�'�'�$�-�-�2H�2H�H�H��	5�C�	5�	5�.5�d�m�m�m�m�W�S�\�\�\�J�J�
�	5�/�'�$�-�-�?�?�
�	5�/�'�#�,�,�>�>�4�4r0N)r?r�r�r�r�r�r�r�r�r0r/rrDs^��������C�C�C�<�<�<�~<�<�<�.,5�,5�,5�,5�,5r0rc��eZdZdZd�Zd�ZdS)rz�A DocTest example has failed in debugging mode.

    The exception instance has variables:

    - test: the DocTest object being run

    - example: the Example object that failed

    - got: the actual output
    c�0�||_||_||_dSr�)r`r�r�)rr`r�r�s    r/r�zDocTestFailure.__init__�s����	��������r0c�*�t|j��Sr��rCr`r�s r/�__str__zDocTestFailure.__str__�����4�9�~�~�r0N�r?r�r�r�r�r�r�r0r/rr�s<������	�	����
����r0rc��eZdZdZd�Zd�ZdS)rz�A DocTest example has encountered an unexpected exception

    The exception instance has variables:

    - test: the DocTest object being run

    - example: the Example object that failed

    - exc_info: the exception info
    c�0�||_||_||_dSr�)r`r�rs)rr`r�rss    r/r�zUnexpectedException.__init__�s����	���� ��
�
�
r0c�*�t|j��Sr�r�r�s r/r�zUnexpectedException.__str__�r�r0Nr�r�r0r/rr�s<������	�	�!�!�!�
����r0rc�&�eZdZdZdd�Zd�Zd�ZdS)ra�	Run doc tests but raise an exception as soon as there is a failure.

       If an unexpected exception occurs, an UnexpectedException is raised.
       It contains the test, the example, and the original exception:

         >>> runner = DebugRunner(verbose=False)
         >>> test = DocTestParser().get_doctest('>>> raise KeyError\n42',
         ...                                    {}, 'foo', 'foo.py', 0)
         >>> try:
         ...     runner.run(test)
         ... except UnexpectedException as f:
         ...     failure = f

         >>> failure.test is test
         True

         >>> failure.example.want
         '42\n'

         >>> exc_info = failure.exc_info
         >>> raise exc_info[1] # Already has the traceback
         Traceback (most recent call last):
         ...
         KeyError

       We wrap the original exception to give the calling application
       access to the test and example information.

       If the output doesn't match, then a DocTestFailure is raised:

         >>> test = DocTestParser().get_doctest('''
         ...      >>> x = 1
         ...      >>> x
         ...      2
         ...      ''', {}, 'foo', 'foo.py', 0)

         >>> try:
         ...    runner.run(test)
         ... except DocTestFailure as f:
         ...    failure = f

       DocTestFailure objects provide access to the test:

         >>> failure.test is test
         True

       As well as to the example:

         >>> failure.example.want
         '2\n'

       and the actual output:

         >>> failure.got
         '1\n'

       If a failure or error occurs, the globals are left intact:

         >>> del test.globs['__builtins__']
         >>> test.globs
         {'x': 1}

         >>> test = DocTestParser().get_doctest('''
         ...      >>> x = 2
         ...      >>> raise KeyError
         ...      ''', {}, 'foo', 'foo.py', 0)

         >>> runner.run(test)
         Traceback (most recent call last):
         ...
         doctest.UnexpectedException: <DocTest foo from foo.py:0 (2 examples)>

         >>> del test.globs['__builtins__']
         >>> test.globs
         {'x': 2}

       But the globals are cleared if there is no error:

         >>> test = DocTestParser().get_doctest('''
         ...      >>> x = 2
         ...      ''', {}, 'foo', 'foo.py', 0)

         >>> runner.run(test)
         TestResults(failed=0, attempted=1)

         >>> test.globs
         {}

       NTc�x�t�||||d��}|r|j���|S)NF)rr�r7r�)rr`r�r�r��rs      r/r�zDebugRunner.runWs>�����d�D�,��U�C�C���	��J�������r0c�$�t|||���r�)rr�s     r/r�z'DebugRunner.report_unexpected_exception]s��!�$���:�:�:r0c�$�t|||���r�)rr�s     r/r�zDebugRunner.report_failure`s���T�7�C�0�0�0r0r�)r?r�r�r�r�r�r�r�r0r/rr�sS������X�X�t����;�;�;�1�1�1�1�1r0rTFc	��|�tj�d��}tj|��std|�����|�|j}t|���}	|rt||���}
nt||���}
|	�
||||���D]}|
�|���|r|
���t�|
a
nt�|
��t|
j|
j��S)a*
m=None, name=None, globs=None, verbose=None, report=True,
       optionflags=0, extraglobs=None, raise_on_error=False,
       exclude_empty=False

    Test examples in docstrings in functions and classes reachable
    from module m (or the current module if m is not supplied), starting
    with m.__doc__.

    Also test examples reachable from dict m.__test__ if it exists and is
    not None.  m.__test__ maps names to functions, classes and strings;
    function and class docstrings are tested even if the name is private;
    strings are tested directly, as if they were docstrings.

    Return (#failures, #tests).

    See help(doctest) for an overview.

    Optional keyword arg "name" gives the name of the module; by default
    use m.__name__.

    Optional keyword arg "globs" gives a dict to be used as the globals
    when executing examples; by default, use m.__dict__.  A copy of this
    dict is actually used for each docstring, so that each docstring's
    examples start with a clean slate.

    Optional keyword arg "extraglobs" gives a dictionary that should be
    merged into the globals that are used to execute examples.  By
    default, no extra globals are used.  This is new in 2.4.

    Optional keyword arg "verbose" prints lots of stuff if true, prints
    only failures if false; by default, it's true iff "-v" is in sys.argv.

    Optional keyword arg "report" prints a summary at the end when true,
    else prints nothing at the end.  In verbose mode, the summary is
    detailed, else very brief (in fact, empty if all tests passed).

    Optional keyword arg "optionflags" or's together module constants,
    and defaults to 0.  This is new in 2.3.  Possible values (see the
    docs for details):

        DONT_ACCEPT_TRUE_FOR_1
        DONT_ACCEPT_BLANKLINE
        NORMALIZE_WHITESPACE
        ELLIPSIS
        SKIP
        IGNORE_EXCEPTION_DETAIL
        REPORT_UDIFF
        REPORT_CDIFF
        REPORT_NDIFF
        REPORT_ONLY_FIRST_FAILURE

    Optional keyword arg "raise_on_error" raises an exception on the
    first unexpected exception or failure. This allows failures to be
    post-mortem debugged.

    Advanced tomfoolery:  testmod runs methods of a local instance of
    class doctest.Tester, then merges the results into (or creates)
    global Tester instance doctest.master.  Methods of doctest.master
    can be called directly too, if you want to do something unusual.
    Passing report=0 to testmod is especially useful then, to delay
    displaying a summary.  Invoke doctest.master.summarize(verbose)
    when you're done fiddling.
    Nr�ztestmod: module required; )r8�r5rz�r7rE)rGrHr4r@rArKr?rrrr�r�r��masterr�r'r}r|)rr.r7r5�reportrzrE�raise_on_errorr8�finder�runnerr`s            r/rrls��J	�y�
�K�O�O�J�'�'����A���?��i�!�!�=�>�>�>��|��z����
7�
7�
7�F��I��W�+�F�F�F����w�K�H�H�H�����A�t�5�Z��H�H�����
�
�4�����
��������
�~�������V�����v����5�5�5r0c�X�|r|std���t||||pd��\}}|�tj�|��}|�i}n|���}|�|�|��d|vrd|d<|	rt||���}
nt||���}
|
�	||||d��}|
�
|��|r|
���t�|
ant�
|
��t|
j|
j��S)a


    Test examples in the given file.  Return (#failures, #tests).

    Optional keyword arg "module_relative" specifies how filenames
    should be interpreted:

      - If "module_relative" is True (the default), then "filename"
         specifies a module-relative path.  By default, this path is
         relative to the calling module's directory; but if the
         "package" argument is specified, then it is relative to that
         package.  To ensure os-independence, "filename" should use
         "/" characters to separate path segments, and should not
         be an absolute path (i.e., it may not begin with "/").

      - If "module_relative" is False, then "filename" specifies an
        os-specific path.  The path may be absolute or relative (to
        the current working directory).

    Optional keyword arg "name" gives the name of the test; by default
    use the file's basename.

    Optional keyword argument "package" is a Python package or the
    name of a Python package whose directory should be used as the
    base directory for a module relative filename.  If no package is
    specified, then the calling module's directory is used as the base
    directory for module relative filenames.  It is an error to
    specify "package" if "module_relative" is False.

    Optional keyword arg "globs" gives a dict to be used as the globals
    when executing examples; by default, use {}.  A copy of this dict
    is actually used for each docstring, so that each docstring's
    examples start with a clean slate.

    Optional keyword arg "extraglobs" gives a dictionary that should be
    merged into the globals that are used to execute examples.  By
    default, no extra globals are used.

    Optional keyword arg "verbose" prints lots of stuff if true, prints
    only failures if false; by default, it's true iff "-v" is in sys.argv.

    Optional keyword arg "report" prints a summary at the end when true,
    else prints nothing at the end.  In verbose mode, the summary is
    detailed, else very brief (in fact, empty if all tests passed).

    Optional keyword arg "optionflags" or's together module constants,
    and defaults to 0.  Possible values (see the docs for details):

        DONT_ACCEPT_TRUE_FOR_1
        DONT_ACCEPT_BLANKLINE
        NORMALIZE_WHITESPACE
        ELLIPSIS
        SKIP
        IGNORE_EXCEPTION_DETAIL
        REPORT_UDIFF
        REPORT_CDIFF
        REPORT_NDIFF
        REPORT_ONLY_FIRST_FAILURE

    Optional keyword arg "raise_on_error" raises an exception on the
    first unexpected exception or failure. This allows failures to be
    post-mortem debugged.

    Optional keyword arg "parser" specifies a DocTestParser (or
    subclass) that should be used to extract tests from the files.

    Optional keyword arg "encoding" specifies an encoding that should
    be used to convert the file to unicode.

    Advanced tomfoolery:  testmod runs methods of a local instance of
    class doctest.Tester, then merges the results into (or creates)
    global Tester instance doctest.master.  Methods of doctest.master
    can be called directly too, if you want to do something unusual.
    Passing report=0 to testmod is especially useful then, to delay
    displaying a summary.  Invoke doctest.master.summarize(verbose)
    when you're done fiddling.
    �8Package may only be specified for module-relative paths.r�Nr?r�rr#)r�rer�r��basenamer�rArrrr�r�rr�r'r}r|)r`rbr.rar7r5r	rzrEr
r6rX�textrr`s               r/rr�s\��d�,��,��+�,�,�	,�$�H�g��$,�$7��9�9�N�D�(��|��w����)�)��
�}�����
�
������
���Z� � � �����&��j���I��W�+�F�F�F����w�K�H�H�H�����d�E�4��1�=�=�D�
�J�J�t����
��������
�~�������V�����v����5�5�5r0�NoNamec��t|d���}t||���}|�|||���D]}|�||����dS)ar
    Test examples in the given object's docstring (`f`), using `globs`
    as globals.  Optional argument `name` is used in failure messages.
    If the optional argument `verbose` is true, then generate output
    even if there are no failures.

    `compileflags` gives the set of flags that should be used by the
    Python compiler when running the examples.  If not specified, then
    it will default to the set of future-import flags that apply to
    `globs`.

    Optional keyword arg `optionflags` specifies options for the
    testing and output.  See the documentation for `testmod` for more
    information.
    F)r5r7r)r7)r�N)rrr�r�)	rdr7r5r.r�rzrrr`s	         r/rrOsl��$�7�E�
:�
:�
:�F�
�7��
D�
D�
D�F����A�t�5��1�1�4�4���
�
�4�l�
�3�3�3�3�4�4r0c�T�|tz|krtd|���t}|a|S)a?Sets the unittest option flags.

    The old flag is returned so that a runner could restore the old
    value if it wished to:

      >>> import doctest
      >>> old = doctest._unittest_reportflags
      >>> doctest.set_unittest_reportflags(REPORT_NDIFF |
      ...                          REPORT_ONLY_FIRST_FAILURE) == old
      True

      >>> doctest._unittest_reportflags == (REPORT_NDIFF |
      ...                                   REPORT_ONLY_FIRST_FAILURE)
      True

    Only reporting flags can be set:

      >>> doctest.set_unittest_reportflags(ELLIPSIS)
      Traceback (most recent call last):
      ...
      ValueError: ('Only reporting flags allowed', 8)

      >>> doctest.set_unittest_reportflags(old) == (REPORT_NDIFF |
      ...                                   REPORT_ONLY_FIRST_FAILURE)
      True
    zOnly reporting flags allowed)rr��_unittest_reportflags)r8�olds  r/rrls5��:	���E�)�)��7��?�?�?�
�C�!���Jr0c�d�eZdZ		dd�Zd�Zd�Zd�Zd�Zd�Zd	�Z	d
�Z
d�Zd�Ze
jZd
�ZdS)�DocTestCaser#Nc��tj�|��||_||_||_||_||_dSr�)�unittest�TestCaser��_dt_optionflags�_dt_checker�_dt_test�	_dt_setUp�_dt_tearDown)rr`rz�setUp�tearDownr�s      r/r�zDocTestCase.__init__�sG��	��"�"�4�(�(�(�*���"�����
����$����r0c��|j}|j���|_|j�|�|��dSdSr�)rr7r��	_dt_globsr�rr`s  r/r zDocTestCase.setUp�sD���}������*�*����>�%��N�N�4� � � � � �&�%r0c��|j}|j�|�|��|j���|j�|j��dSr�)rrr7r�rAr#r$s  r/r!zDocTestCase.tearDown�sZ���}����(����d�#�#�#�	
�
�������
���$�.�)�)�)�)�)r0c��|j}tj}t��}|j}|t
zs
|tz}t||jd���}	d|_	|�
||jd���\}}|t_n#|t_wxYw|r:|�|�
|��������dS)NF�rzr�r5zF----------------------------------------------------------------------)r�r�)rrGr�r$rrrrrr�r�r��failureException�format_failurerr)rr`r�newrzrr}r|s        r/�runTestzDocTestCase.runTest�s����}���j���j�j���*���o�-�	1�
�0�0�K��;�'+�'7��H�H�H��	�#�F�N�$�j�j��#�)��)�8�8�O�H�e��C�J�J���C�J������	M��'�'��(;�(;�C�L�L�N�N�(K�(K�L�L�L�	M�	Ms�'B	�	Bc
���|j}|j�d}n
d|jz}d�|j�d��dd���}d|j�d|j�d|�d|�d	|��
S)
Nzunknown line numberz%sr�r��Failed doctest test for �	
  File "r�r�z

)rr�r�r.r�r`)r�errr`r��lnames     r/r)zDocTestCase.format_failure�s|���}���;��*�F�F��D�K�'�F���������-�-�b�c�c�2�3�3����9�9�9�d�m�m�m�V�V�V�U�U�U�C�C�A�	r0c���|���t|j|jd���}|�|jd���|���dS)a�Run the test case without results and without catching exceptions

           The unit test framework includes a debug method on test cases
           and test suites to support post-mortem debugging.  The test code
           is run in such a way that errors are not caught.  This way a
           caller can catch the errors and initiate post-mortem debugging.

           The DocTestCase provides a debug method that raises
           UnexpectedException errors if there is an unexpected
           exception:

             >>> test = DocTestParser().get_doctest('>>> raise KeyError\n42',
             ...                {}, 'foo', 'foo.py', 0)
             >>> case = DocTestCase(test)
             >>> try:
             ...     case.debug()
             ... except UnexpectedException as f:
             ...     failure = f

           The UnexpectedException contains the test, the example, and
           the original exception:

             >>> failure.test is test
             True

             >>> failure.example.want
             '42\n'

             >>> exc_info = failure.exc_info
             >>> raise exc_info[1] # Already has the traceback
             Traceback (most recent call last):
             ...
             KeyError

           If the output doesn't match, then a DocTestFailure is raised:

             >>> test = DocTestParser().get_doctest('''
             ...      >>> x = 1
             ...      >>> x
             ...      2
             ...      ''', {}, 'foo', 'foo.py', 0)
             >>> case = DocTestCase(test)

             >>> try:
             ...    case.debug()
             ... except DocTestFailure as f:
             ...    failure = f

           DocTestFailure objects provide access to the test:

             >>> failure.test is test
             True

           As well as to the example:

             >>> failure.example.want
             '2\n'

           and the actual output:

             >>> failure.got
             '1\n'

           Fr')r�N)r rrrr�rr!)rrs  r/r"zDocTestCase.debug�s_��D	
�
�
������)=�%)�%5�u�F�F�F���
�
�4�=�e�
�4�4�4��
�
�����r0c��|jjSr��rr.r�s r/r�zDocTestCase.id	s
���}�!�!r0c���t|��t|��urtS|j|jko?|j|jko/|j|jko|j|jko|j|jkSr�)r�r�rrrrrr�s  r/r�zDocTestCase.__eq__	s~����:�:�T�%�[�[�(�(�!�!��}���.�5��#�u�'<�<�5��~���0�5�� �E�$6�6�5���5�#4�4�		5r0c�P�t|j|j|j|jf��Sr�)r�rrrrr�s r/r�zDocTestCase.__hash__&	s-���T�)�4�>�4�;L��%�'�(�(�	(r0c��|jj�d��}|d�dd�|dd����d�S)Nr�r�r��))rr.r�r�)rr.s  r/r�zDocTestCase.__repr__*	sG���}�!�'�'��,�,�� ��H�H�H�c�h�h�t�C�R�C�y�&9�&9�&9�&9�:�:r0c� �d|jjzS)Nz	Doctest: r3r�s r/�shortDescriptionzDocTestCase.shortDescription0	s���T�]�/�/�/r0)r#NNN)r?r�r�r�r r!r+r)r"r�r�r�r�rOr�r9r�r0r/rr�s�������AE��%�%�%�%�!�!�!�*�*�*�M�M�M�0
�
�
�F�F�F�P"�"�"�5�5�5�(�(�(�;�;�;��n�G�0�0�0�0�0r0rc�*�eZdZd�Zd�Zd�Zd�ZeZdS)�SkipDocTestCasec�J�||_t�|d��dSr�)rLrr�)rrLs  r/r�zSkipDocTestCase.__init__4	s%��������T�4�(�(�(�(�(r0c�0�|�d��dS)Nz-DocTestSuite will not work with -O2 and above)�skipTestr�s r/r zSkipDocTestCase.setUp8	s���
�
�E�F�F�F�F�Fr0c��dSr�r�r�s r/�	test_skipzSkipDocTestCase.test_skip;	����r0c� �d|jjzS)NzSkipping tests from %s)rLr?r�s r/r9z SkipDocTestCase.shortDescription>	s��'�$�+�*>�>�>r0N)r?r�r�r�r r@r9r�r�r0r/r;r;3	sT������)�)�)�G�G�G�
�
�
�?�?�?��G�G�Gr0r;c��eZdZd�ZdS)�
_DocTestSuitec��dSr�r�)rr�s  r/�_removeTestAtIndexz _DocTestSuite._removeTestAtIndexF	rAr0N)r?r�r�rFr�r0r/rDrDD	s#������
�
�
�
�
r0rDc� �|�t��}t|��}|�|||���}|sGtjjdkr2t
��}|�t|����|S|�	��t
��}|D]h}t|j��dkr�|js&|j
}|dd�dkr
|dd�}||_|�t|fi|�����i|S)a
    Convert doctest tests for a module to a unittest test suite.

    This converts each documentation string in a module that
    contains doctest tests to a unittest test case.  If any of the
    tests in a doc string fail, then the test case fails.  An exception
    is raised showing the name of the file containing the test and a
    (sometimes approximate) line number.

    The `module` argument provides the module to be tested.  The argument
    can be either a module or a module name.

    If no argument is given, the calling module is used.

    A number of options may be provided as keyword arguments:

    setUp
      A set-up function.  This is called before running the
      tests in each file. The setUp function will be passed a DocTest
      object.  The setUp function can access the test globals as the
      globs attribute of the test passed.

    tearDown
      A tear-down function.  This is called after running the
      tests in each file.  The tearDown function will be passed a DocTest
      object.  The tearDown function can access the test globals as the
      globs attribute of the test passed.

    globs
      A dictionary containing initial global variables for the tests.

    optionflags
       A set of doctest option flags expressed as an integer.
    Nrr<r#rdrer�)rrNr�rGr8�optimizerD�addTestr;rCr,r�r`r�r)	rLr7rE�test_finderr�rF�suiter`r`s	         r/rrJ	s��J��#�o�o��
�v�
&�
&�F����V�5�Z��H�H�E���S�Y�'�!�+�+�����
�
�
�o�f�-�-�.�.�.���	�J�J�L�L�L��O�O�E��4�4���t�}����"�"���}�	%���H�����}��&�&�#�C�R�C�=��$�D�M�
�
�
�k�$�2�2�'�2�2�3�3�3�3��Lr0c� �eZdZd�Zd�Zd�ZdS)�DocFileCasec�f�d�|jj�d����S)Nr�r�)r�rr.r�r�s r/r�zDocFileCase.id�	s'���x�x��
�*�0�0��5�5�6�6�6r0c��|jjSr�)rr`r�s r/r�zDocFileCase.__repr__�	s
���}�%�%r0c�@�d|jj�d|jj�d|��S)Nr-r.z", line 0

)rr.r`)rr/s  r/r)zDocFileCase.format_failure�	s.����=�%�%�%�t�}�'=�'=�'=�s�s�D�	r0N)r?r�r�r�r�r)r�r0r/rMrM�	sA������7�7�7�&�&�&�����r0rMc�$�|�i}n|���}|r|std���t||||pd��\}}d|vr||d<tj�|��}|�||||d��}	t|	fi|��S)Nrr�r�r#)r�r�rer�r�rrrM)
r�rbrar7r6rXr��docr.r`s
          r/�DocFileTestrS�	s���
�}�����
�
�����,��,��+�,�,�	,��t�W�o�'�2�7�4�4�I�C������ ��j���7���D�!�!�D����c�5�$��a�8�8�D��t�'�'�w�'�'�'r0c���t��}|�dd��r%t|�d����|d<|D]"}|�t	|fi|�����#|S)a�A unittest suite for one or more doctest files.

    The path to each doctest file is given as a string; the
    interpretation of that string depends on the keyword argument
    "module_relative".

    A number of options may be provided as keyword arguments:

    module_relative
      If "module_relative" is True, then the given file paths are
      interpreted as os-independent module-relative paths.  By
      default, these paths are relative to the calling module's
      directory; but if the "package" argument is specified, then
      they are relative to that package.  To ensure os-independence,
      "filename" should use "/" characters to separate path
      segments, and may not be an absolute path (i.e., it may not
      begin with "/").

      If "module_relative" is False, then the given file paths are
      interpreted as os-specific paths.  These paths may be absolute
      or relative (to the current working directory).

    package
      A Python package or the name of a Python package whose directory
      should be used as the base directory for module relative paths.
      If "package" is not specified, then the calling module's
      directory is used as the base directory for module relative
      filenames.  It is an error to specify "package" if
      "module_relative" is False.

    setUp
      A set-up function.  This is called before running the
      tests in each file. The setUp function will be passed a DocTest
      object.  The setUp function can access the test globals as the
      globs attribute of the test passed.

    tearDown
      A tear-down function.  This is called after running the
      tests in each file.  The tearDown function will be passed a DocTest
      object.  The tearDown function can access the test globals as the
      globs attribute of the test passed.

    globs
      A dictionary containing initial global variables for the tests.

    optionflags
      A set of doctest option flags expressed as an integer.

    parser
      A DocTestParser (or subclass) that should be used to extract
      tests from the files.

    encoding
      An encoding that will be used to convert the files to unicode.
    rbTra)rDr4rNrIrS)�paths�kwrKr�s    r/rr�	s}��p
�O�O�E�

�v�v���&�&�=�)�"�&�&��*;�*;�<�<��9�
��/�/��
�
�
�k�$�-�-�"�-�-�.�.�.�.��Lr0c��g}t���|��D]�}t|t��rk|�|jdd���|j}|r?|�d��|d�|�d��dd�D��z
}��|d�|�d��dd�D��z
}��|r.|ddkr"|���|r|ddk�"|r/|ddkr#|�d��|r|ddk�#d�	|��dzS)	awExtract script from text with examples.

       Converts text with examples to a Python script.  Example input is
       converted to regular code.  Example output and all other words
       are converted to comments:

       >>> text = '''
       ...       Here are examples of simple math.
       ...
       ...           Python has super accurate integer addition
       ...
       ...           >>> 2 + 2
       ...           5
       ...
       ...           And very friendly error messages:
       ...
       ...           >>> 1/0
       ...           To Infinity
       ...           And
       ...           Beyond
       ...
       ...           You can use logic if you want:
       ...
       ...           >>> if 0:
       ...           ...    blah
       ...           ...    blah
       ...           ...
       ...
       ...           Ho hum
       ...           '''

       >>> print(script_from_examples(text))
       # Here are examples of simple math.
       #
       #     Python has super accurate integer addition
       #
       2 + 2
       # Expected:
       ## 5
       #
       #     And very friendly error messages:
       #
       1/0
       # Expected:
       ## To Infinity
       ## And
       ## Beyond
       #
       #     You can use logic if you want:
       #
       if 0:
          blah
          blah
       #
       #     Ho hum
       <BLANKLINE>
       Nr�z# Expected:c��g|]}d|z��S)z## r��r�r�s  r/r�z(script_from_examples.<locals>.<listcomp>=
s��B�B�B�q�5��7�B�B�Br0r}c�,�g|]}t|����Sr�)r�rYs  r/r�z(script_from_examples.<locals>.<listcomp>@
s0��8�8�8��%�Q�'�'�8�8�8r0r�r#)
rrrBrr�r�r�r��popr�)rkr�piecer�s    r/rr�	s}��t�F����&�&�q�)�)�8�8���e�W�%�%�	8��M�M�%�,�s��s�+�,�,�,��:�D��
C��
�
�m�,�,�,��B�B�D�J�J�t�,<�,<�S�b�S�,A�B�B�B�B���
�8�8� %���D� 1� 1�#�2�#� 6�8�8�8�
8�F�F���V�B�Z�3�&�&��
�
������V�B�Z�3�&�&�
��V�A�Y�#�%�%��
�
�1�
�
�
���V�A�Y�#�%�%��9�9�V���t�#�#r0c����t|��}t���|��}�fd�|D��}|st�d���|d}t	|j��}|S)aExtract the test sources from a doctest docstring as a script.

    Provide the module (or dotted name of the module) containing the
    test to be debugged and the name (within the module) of the object
    with the doc string with tests to be debugged.
    c�*��g|]}|j�k�
|��Sr�r-)r�r�r.s  �r/r�ztestsource.<locals>.<listcomp>U
s ���/�/�/�!���$���A���r0znot found in testsr#)rNrr�r�rr�)rLr.rFr`�testsrcs `   r/r r L
sx����v�
&�
&�F��O�O� � ��(�(�E�/�/�/�/�u�/�/�/�D��5���3�4�4�4���7�D�"�4�>�2�2�G��Nr0c�F�t|��}t|||��dS)z4Debug a single doctest docstring, in argument `src`'N)r�debug_script)�src�pmr7r_s    r/r!r!\
s'��"�3�'�'�G���"�e�$�$�$�$�$r0c��ddl}|r|���}ni}|r�	t|||��dS#tt	j��d��|jd���}|���|�dt	j��d��YdSxYw|jd����	d|z||��dS)z7Debug a test script.  `src` is the script, as a string.r#Nr)T)r�r<zexec(%r))
r�r�r�rYrGrsr�r��interactionr�)rbrcr7r��ps     r/raraa
s����J�J�J����
�
�������	�	C�	3���e�U�#�#�#�#�#��	3��#�,�.�.��#�$�$�$�����&�&�&�A�
�G�G�I�I�I�
�M�M�$�����q� 1�2�2�2�2�2�2�����������"�"�:��#3�U�E�B�B�B�B�Bs
�4�A:B1c�p�t|��}t||��}t|||j��dS)z�Debug a single doctest docstring.

    Provide the module (or dotted name of the module) containing the
    test to be debugged and the name (within the module) of the object
    with the docstring with tests to be debugged.
    N)rNr rar@)rLr.rcr_s    r/r"r"u
s:���v�
&�
&�F����&�&�G���"�f�o�.�.�.�.�.r0c�$�eZdZdZd�Zd�Zd�ZdS)�
_TestClassz�
    A pointless class, for sanity-checking of docstring testing.

    Methods:
        square()
        get()

    >>> _TestClass(13).get() + _TestClass(-12).get()
    1
    >>> hex(_TestClass(13).square().get())
    '0xa9'
    c��||_dS)z�val -> _TestClass object with associated value val.

        >>> t = _TestClass(123)
        >>> print(t.get())
        123
        N�rb)rrbs  r/r�z_TestClass.__init__�
s������r0c�$�|jdz|_|S)zosquare() -> square TestClass's associated value

        >>> _TestClass(13).square().get()
        169
        r<rkr�s r/�squarez_TestClass.square�
s���8�q�=����r0c��|jS)z~get() -> return TestClass's associated value.

        >>> x = _TestClass(-42)
        >>> print(x.get())
        -42
        rkr�s r/r4z_TestClass.get�
s���x�r0N)r?r�r�r�r�rmr4r�r0r/riri�
sK������������������r0riz�
                      Example of a string object, searched as-is.
                      >>> x = 1; y = 2
                      >>> x + y, x * y
                      (3, 2)
                      a�
                                    In 2.2, boolean expressions displayed
                                    0 or 1.  By default, we still accept
                                    them.  This can be disabled by passing
                                    DONT_ACCEPT_TRUE_FOR_1 to the new
                                    optionflags argument.
                                    >>> 4 == 4
                                    1
                                    >>> 4 == 4
                                    True
                                    >>> 4 > 4
                                    0
                                    >>> 4 > 4
                                    False
                                    z�
                Blank lines can be marked with <BLANKLINE>:
                    >>> print('foo\n\nbar\n')
                    foo
                    <BLANKLINE>
                    bar
                    <BLANKLINE>
            z�
                If the ellipsis flag is used, then '...' can be used to
                elide substrings in the desired output:
                    >>> print(list(range(1000))) #doctest: +ELLIPSIS
                    [0, 1, 2, ..., 999]
            a�
                If the whitespace normalization flag is used, then
                differences in whitespace are ignored.
                    >>> print(list(range(30))) #doctest: +NORMALIZE_WHITESPACE
                    [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
                     15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
                     27, 28, 29]
            )rir�zbool-int equivalencezblank lines�ellipsiszwhitespace normalizationc�4�ddl}|�d���}|�ddddd�	��|�d
ddt���gd
���|�dddd���|�ddd���|���}|j}|j}d}|jD]}|t|z}�|j	r
|tz}|D]�}|�d��r|tj
�|��\}}tj
�d|��t#|dd���}	tj
d=t%|	||���\}
}nt'|d||���\}
}|
rdS��dS)Nr#zdoctest runner)�descriptionrxz	--verbose�
store_trueFz'print very verbose output for all tests)�action�default�helpz-oz--optionr�zqspecify a doctest option flag to apply to the test run; may be specified more than once to apply multiple options)rs�choicesrtruz-fz--fail-fastzystop running tests after first failure (this is a shorthand for -o FAIL_FAST, and is in addition to any other -o options))rsrurorz file containing the tests to run)�nargsruz.py���r)rbr5rzr))�argparse�ArgumentParser�add_argumentr*�keys�
parse_argsror5r�	fail_fastrr~r�r�r�rG�insertrDrr)ryr6r��	testfilesr5r�rr`�dirnamerr}r�s            r/�_testr��
s	���O�O�O�
�
$�
$�1A�
$�
B�
B�F�
����k�,��F��H�H�H�
����j�� 3� 8� 8� :� :�B�E��G�G�G�
����m�L�F��H�H�H�����c�?��A�A�A������D��	�I��l�G��G��+�/�/���&�v�.�.����~���9����������U�#�#�	K�!#��
�
�h� 7� 7��G�X��H�O�O�A�w�'�'�'��8�C�R�C�=�)�)�A�����!�!�W�'�J�J�J�K�H�a�a�"�8�U�-4�'�K�K�K�K�H�a��	��1�1�	��1r0r�)r<)rf)	NNNNTr#NFF)FrNr#ru)FN)F)Tr��
__docformat__�__all__r2r�r@r>r�r�rirGrpr�ior$r%�collectionsr&r'r*rrrrrrrr	r
rrr
rrr�r�r;rNrSrermrxrzr�r�r�r�r�rYrrrrrr�	Exceptionrrrrrrrrrrrr;�	TestSuiterDrrMrSrrr r!rar"rirXr�r?�exitr�r0r/�<module>r�sX��%�%�N&�
�+�+�+��Z����������������	�	�	�	�
�
�
�
�	�	�	�	�
�
�
�
���������2�2�2�2�2�2�2�2�"�"�"�"�"�"��j��(:�;�;��.��O�O�O�-�,�-E�F�F��+�+�,C�D�D��*�*�+A�B�B����z�*�*����6�"�"��-�-�.G�H�H��*�)�*�(�)����	�
,�,��#�"�>�2�2��"�"�>�2�2��"�"�>�2�2��/�/�0K�L�L�����,�,�	��� �� �-�-��	��!����&
�
�
�>�>�>�>�&D�D�D�"�"�"�$/�/�/�/�	�	�	� � � � � �� � � �/�/�/�b������4"%�"%�"%�"%�"%�C�G�"%�"%�"%�J ,� ,� ,�\B$�B$�B$�B$�B$�B$�B$�B$�HGD�GD�GD�GD�GD�GD�GD�GD�Zd;�d;�d;�d;�d;�d;�d;�d;�VD�D�D�D�D�D�D�D�T
G�G�G�G�G�G�G�G�RP5�P5�P5�P5�P5�P5�P5�P5�d�����Y����&�����)����&e1�e1�e1�e1�e1�-�e1�e1�e1�\
��37�37�05�f6�f6�f6�f6�P(,�$����d���U�=�=�?�?��y6�y6�y6�y6�v:B�:;�4�4�4�4�6��!�!�!�Ha0�a0�a0�a0�a0�(�#�a0�a0�a0�F�����k����"
�
�
�
�
�H�&�
�
�
�>�>�>�>�@�����+����'+�D��=�=�?�?��(�(�(�(�4C�C�C�RP$�P$�P$�d��� %�%�%�%�
C�C�C�C�(	/�	/�	/�	/�*�*�*�*�*�*�*�*�X%��%(� ��)�Q0
�0
��f*
�*
�*
�Z�z����C�H�U�U�W�W�������r0
Name
Size
Permissions
Options
__future__.cpython-311.opt-1.pyc
4.812 KB
-rw-r--r--
__future__.cpython-311.opt-2.pyc
2.812 KB
-rw-r--r--
__future__.cpython-311.pyc
4.812 KB
-rw-r--r--
__hello__.cpython-311.opt-1.pyc
1.065 KB
-rw-r--r--
__hello__.cpython-311.opt-2.pyc
1.013 KB
-rw-r--r--
__hello__.cpython-311.pyc
1.065 KB
-rw-r--r--
_aix_support.cpython-311.opt-1.pyc
4.277 KB
-rw-r--r--
_aix_support.cpython-311.opt-2.pyc
2.976 KB
-rw-r--r--
_aix_support.cpython-311.pyc
4.277 KB
-rw-r--r--
_bootsubprocess.cpython-311.opt-1.pyc
4.368 KB
-rw-r--r--
_bootsubprocess.cpython-311.opt-2.pyc
4.144 KB
-rw-r--r--
_bootsubprocess.cpython-311.pyc
4.368 KB
-rw-r--r--
_collections_abc.cpython-311.opt-1.pyc
50.028 KB
-rw-r--r--
_collections_abc.cpython-311.opt-2.pyc
44.149 KB
-rw-r--r--
_collections_abc.cpython-311.pyc
50.028 KB
-rw-r--r--
_compat_pickle.cpython-311.opt-1.pyc
7.172 KB
-rw-r--r--
_compat_pickle.cpython-311.opt-2.pyc
7.172 KB
-rw-r--r--
_compat_pickle.cpython-311.pyc
7.353 KB
-rw-r--r--
_compression.cpython-311.opt-1.pyc
7.874 KB
-rw-r--r--
_compression.cpython-311.opt-2.pyc
7.673 KB
-rw-r--r--
_compression.cpython-311.pyc
7.874 KB
-rw-r--r--
_markupbase.cpython-311.opt-1.pyc
13.506 KB
-rw-r--r--
_markupbase.cpython-311.opt-2.pyc
13.14 KB
-rw-r--r--
_markupbase.cpython-311.pyc
13.765 KB
-rw-r--r--
_osx_support.cpython-311.opt-1.pyc
19.472 KB
-rw-r--r--
_osx_support.cpython-311.opt-2.pyc
16.942 KB
-rw-r--r--
_osx_support.cpython-311.pyc
19.472 KB
-rw-r--r--
_py_abc.cpython-311.opt-1.pyc
7.634 KB
-rw-r--r--
_py_abc.cpython-311.opt-2.pyc
6.484 KB
-rw-r--r--
_py_abc.cpython-311.pyc
7.706 KB
-rw-r--r--
_pydecimal.cpython-311.opt-1.pyc
238.549 KB
-rw-r--r--
_pydecimal.cpython-311.opt-2.pyc
160.305 KB
-rw-r--r--
_pydecimal.cpython-311.pyc
238.549 KB
-rw-r--r--
_pyio.cpython-311.opt-1.pyc
117.272 KB
-rw-r--r--
_pyio.cpython-311.opt-2.pyc
95.422 KB
-rw-r--r--
_pyio.cpython-311.pyc
117.336 KB
-rw-r--r--
_sitebuiltins.cpython-311.opt-1.pyc
5.31 KB
-rw-r--r--
_sitebuiltins.cpython-311.opt-2.pyc
4.795 KB
-rw-r--r--
_sitebuiltins.cpython-311.pyc
5.31 KB
-rw-r--r--
_strptime.cpython-311.opt-1.pyc
27.267 KB
-rw-r--r--
_strptime.cpython-311.opt-2.pyc
23.688 KB
-rw-r--r--
_strptime.cpython-311.pyc
27.267 KB
-rw-r--r--
_sysconfigdata__linux_x86_64-linux-gnu.cpython-311.opt-1.pyc
61.639 KB
-rw-r--r--
_sysconfigdata__linux_x86_64-linux-gnu.cpython-311.opt-2.pyc
61.639 KB
-rw-r--r--
_sysconfigdata__linux_x86_64-linux-gnu.cpython-311.pyc
61.639 KB
-rw-r--r--
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-311.opt-1.pyc
61.163 KB
-rw-r--r--
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-311.opt-2.pyc
61.163 KB
-rw-r--r--
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-311.pyc
61.163 KB
-rw-r--r--
_threading_local.cpython-311.opt-1.pyc
9.002 KB
-rw-r--r--
_threading_local.cpython-311.opt-2.pyc
5.771 KB
-rw-r--r--
_threading_local.cpython-311.pyc
9.002 KB
-rw-r--r--
_weakrefset.cpython-311.opt-1.pyc
12.845 KB
-rw-r--r--
_weakrefset.cpython-311.opt-2.pyc
12.845 KB
-rw-r--r--
_weakrefset.cpython-311.pyc
12.845 KB
-rw-r--r--
abc.cpython-311.opt-1.pyc
8.842 KB
-rw-r--r--
abc.cpython-311.opt-2.pyc
5.717 KB
-rw-r--r--
abc.cpython-311.pyc
8.842 KB
-rw-r--r--
aifc.cpython-311.opt-1.pyc
44.455 KB
-rw-r--r--
aifc.cpython-311.opt-2.pyc
39.37 KB
-rw-r--r--
aifc.cpython-311.pyc
44.455 KB
-rw-r--r--
antigravity.cpython-311.opt-1.pyc
1.24 KB
-rw-r--r--
antigravity.cpython-311.opt-2.pyc
1.106 KB
-rw-r--r--
antigravity.cpython-311.pyc
1.24 KB
-rw-r--r--
argparse.cpython-311.opt-1.pyc
111.04 KB
-rw-r--r--
argparse.cpython-311.opt-2.pyc
101.564 KB
-rw-r--r--
argparse.cpython-311.pyc
111.324 KB
-rw-r--r--
ast.cpython-311.opt-1.pyc
106.852 KB
-rw-r--r--
ast.cpython-311.opt-2.pyc
98.677 KB
-rw-r--r--
ast.cpython-311.pyc
107.106 KB
-rw-r--r--
asynchat.cpython-311.opt-1.pyc
11.621 KB
-rw-r--r--
asynchat.cpython-311.opt-2.pyc
10.297 KB
-rw-r--r--
asynchat.cpython-311.pyc
11.621 KB
-rw-r--r--
asyncore.cpython-311.opt-1.pyc
27.541 KB
-rw-r--r--
asyncore.cpython-311.opt-2.pyc
26.364 KB
-rw-r--r--
asyncore.cpython-311.pyc
27.541 KB
-rw-r--r--
base64.cpython-311.opt-1.pyc
27.377 KB
-rw-r--r--
base64.cpython-311.opt-2.pyc
22.885 KB
-rw-r--r--
base64.cpython-311.pyc
27.793 KB
-rw-r--r--
bdb.cpython-311.opt-1.pyc
37.78 KB
-rw-r--r--
bdb.cpython-311.opt-2.pyc
28.654 KB
-rw-r--r--
bdb.cpython-311.pyc
37.78 KB
-rw-r--r--
bisect.cpython-311.opt-1.pyc
3.627 KB
-rw-r--r--
bisect.cpython-311.opt-2.pyc
2.363 KB
-rw-r--r--
bisect.cpython-311.pyc
3.627 KB
-rw-r--r--
bz2.cpython-311.opt-1.pyc
15.797 KB
-rw-r--r--
bz2.cpython-311.opt-2.pyc
11.029 KB
-rw-r--r--
bz2.cpython-311.pyc
15.797 KB
-rw-r--r--
cProfile.cpython-311.opt-1.pyc
8.875 KB
-rw-r--r--
cProfile.cpython-311.opt-2.pyc
8.423 KB
-rw-r--r--
cProfile.cpython-311.pyc
8.875 KB
-rw-r--r--
calendar.cpython-311.opt-1.pyc
43.705 KB
-rw-r--r--
calendar.cpython-311.opt-2.pyc
39.573 KB
-rw-r--r--
calendar.cpython-311.pyc
43.705 KB
-rw-r--r--
cgi.cpython-311.opt-1.pyc
42.847 KB
-rw-r--r--
cgi.cpython-311.opt-2.pyc
34.517 KB
-rw-r--r--
cgi.cpython-311.pyc
42.847 KB
-rw-r--r--
cgitb.cpython-311.opt-1.pyc
18.452 KB
-rw-r--r--
cgitb.cpython-311.opt-2.pyc
16.922 KB
-rw-r--r--
cgitb.cpython-311.pyc
18.452 KB
-rw-r--r--
chunk.cpython-311.opt-1.pyc
7.266 KB
-rw-r--r--
chunk.cpython-311.opt-2.pyc
5.211 KB
-rw-r--r--
chunk.cpython-311.pyc
7.266 KB
-rw-r--r--
cmd.cpython-311.opt-1.pyc
20.128 KB
-rw-r--r--
cmd.cpython-311.opt-2.pyc
14.918 KB
-rw-r--r--
cmd.cpython-311.pyc
20.128 KB
-rw-r--r--
code.cpython-311.opt-1.pyc
13.589 KB
-rw-r--r--
code.cpython-311.opt-2.pyc
8.521 KB
-rw-r--r--
code.cpython-311.pyc
13.589 KB
-rw-r--r--
codecs.cpython-311.opt-1.pyc
44.197 KB
-rw-r--r--
codecs.cpython-311.opt-2.pyc
29.198 KB
-rw-r--r--
codecs.cpython-311.pyc
44.197 KB
-rw-r--r--
codeop.cpython-311.opt-1.pyc
7.563 KB
-rw-r--r--
codeop.cpython-311.opt-2.pyc
4.634 KB
-rw-r--r--
codeop.cpython-311.pyc
7.563 KB
-rw-r--r--
colorsys.cpython-311.opt-1.pyc
4.849 KB
-rw-r--r--
colorsys.cpython-311.opt-2.pyc
4.256 KB
-rw-r--r--
colorsys.cpython-311.pyc
4.849 KB
-rw-r--r--
compileall.cpython-311.opt-1.pyc
21.093 KB
-rw-r--r--
compileall.cpython-311.opt-2.pyc
17.935 KB
-rw-r--r--
compileall.cpython-311.pyc
21.093 KB
-rw-r--r--
configparser.cpython-311.opt-1.pyc
70.138 KB
-rw-r--r--
configparser.cpython-311.opt-2.pyc
55.522 KB
-rw-r--r--
configparser.cpython-311.pyc
70.138 KB
-rw-r--r--
contextlib.cpython-311.opt-1.pyc
32.291 KB
-rw-r--r--
contextlib.cpython-311.opt-2.pyc
26.311 KB
-rw-r--r--
contextlib.cpython-311.pyc
32.308 KB
-rw-r--r--
contextvars.cpython-311.opt-1.pyc
0.306 KB
-rw-r--r--
contextvars.cpython-311.opt-2.pyc
0.306 KB
-rw-r--r--
contextvars.cpython-311.pyc
0.306 KB
-rw-r--r--
copy.cpython-311.opt-1.pyc
10.938 KB
-rw-r--r--
copy.cpython-311.opt-2.pyc
8.709 KB
-rw-r--r--
copy.cpython-311.pyc
10.938 KB
-rw-r--r--
copyreg.cpython-311.opt-1.pyc
7.969 KB
-rw-r--r--
copyreg.cpython-311.opt-2.pyc
7.208 KB
-rw-r--r--
copyreg.cpython-311.pyc
8.002 KB
-rw-r--r--
crypt.cpython-311.opt-1.pyc
5.715 KB
-rw-r--r--
crypt.cpython-311.opt-2.pyc
5.083 KB
-rw-r--r--
crypt.cpython-311.pyc
5.715 KB
-rw-r--r--
csv.cpython-311.opt-1.pyc
19.6 KB
-rw-r--r--
csv.cpython-311.opt-2.pyc
17.629 KB
-rw-r--r--
csv.cpython-311.pyc
19.6 KB
-rw-r--r--
dataclasses.cpython-311.opt-1.pyc
46.082 KB
-rw-r--r--
dataclasses.cpython-311.opt-2.pyc
42.545 KB
-rw-r--r--
dataclasses.cpython-311.pyc
46.132 KB
-rw-r--r--
datetime.cpython-311.opt-1.pyc
95.861 KB
-rw-r--r--
datetime.cpython-311.opt-2.pyc
88.198 KB
-rw-r--r--
datetime.cpython-311.pyc
98.975 KB
-rw-r--r--
decimal.cpython-311.opt-1.pyc
0.544 KB
-rw-r--r--
decimal.cpython-311.opt-2.pyc
0.544 KB
-rw-r--r--
decimal.cpython-311.pyc
0.544 KB
-rw-r--r--
difflib.cpython-311.opt-1.pyc
79.699 KB
-rw-r--r--
difflib.cpython-311.opt-2.pyc
47.21 KB
-rw-r--r--
difflib.cpython-311.pyc
79.748 KB
-rw-r--r--
dis.cpython-311.opt-1.pyc
35.796 KB
-rw-r--r--
dis.cpython-311.opt-2.pyc
31.541 KB
-rw-r--r--
dis.cpython-311.pyc
35.835 KB
-rw-r--r--
doctest.cpython-311.opt-1.pyc
109.991 KB
-rw-r--r--
doctest.cpython-311.opt-2.pyc
75.754 KB
-rw-r--r--
doctest.cpython-311.pyc
110.371 KB
-rw-r--r--
enum.cpython-311.opt-1.pyc
85.947 KB
-rw-r--r--
enum.cpython-311.opt-2.pyc
76.734 KB
-rw-r--r--
enum.cpython-311.pyc
85.947 KB
-rw-r--r--
filecmp.cpython-311.opt-1.pyc
15.355 KB
-rw-r--r--
filecmp.cpython-311.opt-2.pyc
12.799 KB
-rw-r--r--
filecmp.cpython-311.pyc
15.355 KB
-rw-r--r--
fileinput.cpython-311.opt-1.pyc
20.686 KB
-rw-r--r--
fileinput.cpython-311.opt-2.pyc
15.36 KB
-rw-r--r--
fileinput.cpython-311.pyc
20.686 KB
-rw-r--r--
fnmatch.cpython-311.opt-1.pyc
7.167 KB
-rw-r--r--
fnmatch.cpython-311.opt-2.pyc
6.012 KB
-rw-r--r--
fnmatch.cpython-311.pyc
7.31 KB
-rw-r--r--
fractions.cpython-311.opt-1.pyc
28.571 KB
-rw-r--r--
fractions.cpython-311.opt-2.pyc
21.674 KB
-rw-r--r--
fractions.cpython-311.pyc
28.571 KB
-rw-r--r--
ftplib.cpython-311.opt-1.pyc
46.544 KB
-rw-r--r--
ftplib.cpython-311.opt-2.pyc
36.622 KB
-rw-r--r--
ftplib.cpython-311.pyc
46.544 KB
-rw-r--r--
functools.cpython-311.opt-1.pyc
45.556 KB
-rw-r--r--
functools.cpython-311.opt-2.pyc
39.122 KB
-rw-r--r--
functools.cpython-311.pyc
45.556 KB
-rw-r--r--
genericpath.cpython-311.opt-1.pyc
6.691 KB
-rw-r--r--
genericpath.cpython-311.opt-2.pyc
5.64 KB
-rw-r--r--
genericpath.cpython-311.pyc
6.691 KB
-rw-r--r--
getopt.cpython-311.opt-1.pyc
9.452 KB
-rw-r--r--
getopt.cpython-311.opt-2.pyc
6.971 KB
-rw-r--r--
getopt.cpython-311.pyc
9.518 KB
-rw-r--r--
getpass.cpython-311.opt-1.pyc
7.351 KB
-rw-r--r--
getpass.cpython-311.opt-2.pyc
6.21 KB
-rw-r--r--
getpass.cpython-311.pyc
7.351 KB
-rw-r--r--
gettext.cpython-311.opt-1.pyc
23.697 KB
-rw-r--r--
gettext.cpython-311.opt-2.pyc
23.039 KB
-rw-r--r--
gettext.cpython-311.pyc
23.697 KB
-rw-r--r--
glob.cpython-311.opt-1.pyc
10.884 KB
-rw-r--r--
glob.cpython-311.opt-2.pyc
9.965 KB
-rw-r--r--
glob.cpython-311.pyc
10.96 KB
-rw-r--r--
graphlib.cpython-311.opt-1.pyc
10.741 KB
-rw-r--r--
graphlib.cpython-311.opt-2.pyc
7.427 KB
-rw-r--r--
graphlib.cpython-311.pyc
10.821 KB
-rw-r--r--
gzip.cpython-311.opt-1.pyc
32.942 KB
-rw-r--r--
gzip.cpython-311.opt-2.pyc
28.741 KB
-rw-r--r--
gzip.cpython-311.pyc
32.942 KB
-rw-r--r--
hashlib.cpython-311.opt-1.pyc
12.063 KB
-rw-r--r--
hashlib.cpython-311.opt-2.pyc
11.097 KB
-rw-r--r--
hashlib.cpython-311.pyc
12.063 KB
-rw-r--r--
heapq.cpython-311.opt-1.pyc
20.107 KB
-rw-r--r--
heapq.cpython-311.opt-2.pyc
17.089 KB
-rw-r--r--
heapq.cpython-311.pyc
20.107 KB
-rw-r--r--
hmac.cpython-311.opt-1.pyc
11.216 KB
-rw-r--r--
hmac.cpython-311.opt-2.pyc
8.806 KB
-rw-r--r--
hmac.cpython-311.pyc
11.216 KB
-rw-r--r--
imaplib.cpython-311.opt-1.pyc
65.278 KB
-rw-r--r--
imaplib.cpython-311.opt-2.pyc
53.265 KB
-rw-r--r--
imaplib.cpython-311.pyc
67.445 KB
-rw-r--r--
imghdr.cpython-311.opt-1.pyc
7.671 KB
-rw-r--r--
imghdr.cpython-311.opt-2.pyc
7.515 KB
-rw-r--r--
imghdr.cpython-311.pyc
7.671 KB
-rw-r--r--
imp.cpython-311.opt-1.pyc
16.088 KB
-rw-r--r--
imp.cpython-311.opt-2.pyc
13.854 KB
-rw-r--r--
imp.cpython-311.pyc
16.088 KB
-rw-r--r--
inspect.cpython-311.opt-1.pyc
137.98 KB
-rw-r--r--
inspect.cpython-311.opt-2.pyc
113.197 KB
-rw-r--r--
inspect.cpython-311.pyc
138.342 KB
-rw-r--r--
io.cpython-311.opt-1.pyc
4.934 KB
-rw-r--r--
io.cpython-311.opt-2.pyc
3.479 KB
-rw-r--r--
io.cpython-311.pyc
4.934 KB
-rw-r--r--
ipaddress.cpython-311.opt-1.pyc
97.349 KB
-rw-r--r--
ipaddress.cpython-311.opt-2.pyc
72.501 KB
-rw-r--r--
ipaddress.cpython-311.pyc
97.349 KB
-rw-r--r--
keyword.cpython-311.opt-1.pyc
1.059 KB
-rw-r--r--
keyword.cpython-311.opt-2.pyc
0.659 KB
-rw-r--r--
keyword.cpython-311.pyc
1.059 KB
-rw-r--r--
linecache.cpython-311.opt-1.pyc
7.285 KB
-rw-r--r--
linecache.cpython-311.opt-2.pyc
6.124 KB
-rw-r--r--
linecache.cpython-311.pyc
7.285 KB
-rw-r--r--
locale.cpython-311.opt-1.pyc
62.905 KB
-rw-r--r--
locale.cpython-311.opt-2.pyc
58.563 KB
-rw-r--r--
locale.cpython-311.pyc
62.905 KB
-rw-r--r--
lzma.cpython-311.opt-1.pyc
16.341 KB
-rw-r--r--
lzma.cpython-311.opt-2.pyc
10.389 KB
-rw-r--r--
lzma.cpython-311.pyc
16.341 KB
-rw-r--r--
mailbox.cpython-311.opt-1.pyc
121.61 KB
-rw-r--r--
mailbox.cpython-311.opt-2.pyc
116.258 KB
-rw-r--r--
mailbox.cpython-311.pyc
121.71 KB
-rw-r--r--
mailcap.cpython-311.opt-1.pyc
12.499 KB
-rw-r--r--
mailcap.cpython-311.opt-2.pyc
11.001 KB
-rw-r--r--
mailcap.cpython-311.pyc
12.499 KB
-rw-r--r--
mimetypes.cpython-311.opt-1.pyc
25.528 KB
-rw-r--r--
mimetypes.cpython-311.opt-2.pyc
19.731 KB
-rw-r--r--
mimetypes.cpython-311.pyc
25.528 KB
-rw-r--r--
modulefinder.cpython-311.opt-1.pyc
30.206 KB
-rw-r--r--
modulefinder.cpython-311.opt-2.pyc
29.345 KB
-rw-r--r--
modulefinder.cpython-311.pyc
30.307 KB
-rw-r--r--
netrc.cpython-311.opt-1.pyc
9.672 KB
-rw-r--r--
netrc.cpython-311.opt-2.pyc
9.451 KB
-rw-r--r--
netrc.cpython-311.pyc
9.672 KB
-rw-r--r--
nntplib.cpython-311.opt-1.pyc
49 KB
-rw-r--r--
nntplib.cpython-311.opt-2.pyc
37.974 KB
-rw-r--r--
nntplib.cpython-311.pyc
49 KB
-rw-r--r--
ntpath.cpython-311.opt-1.pyc
30.25 KB
-rw-r--r--
ntpath.cpython-311.opt-2.pyc
28.347 KB
-rw-r--r--
ntpath.cpython-311.pyc
30.25 KB
-rw-r--r--
nturl2path.cpython-311.opt-1.pyc
3.422 KB
-rw-r--r--
nturl2path.cpython-311.opt-2.pyc
3.025 KB
-rw-r--r--
nturl2path.cpython-311.pyc
3.422 KB
-rw-r--r--
numbers.cpython-311.opt-1.pyc
14.908 KB
-rw-r--r--
numbers.cpython-311.opt-2.pyc
11.398 KB
-rw-r--r--
numbers.cpython-311.pyc
14.908 KB
-rw-r--r--
opcode.cpython-311.opt-1.pyc
13.543 KB
-rw-r--r--
opcode.cpython-311.opt-2.pyc
13.405 KB
-rw-r--r--
opcode.cpython-311.pyc
13.543 KB
-rw-r--r--
operator.cpython-311.opt-1.pyc
18.335 KB
-rw-r--r--
operator.cpython-311.opt-2.pyc
16.17 KB
-rw-r--r--
operator.cpython-311.pyc
18.335 KB
-rw-r--r--
optparse.cpython-311.opt-1.pyc
71.9 KB
-rw-r--r--
optparse.cpython-311.opt-2.pyc
59.969 KB
-rw-r--r--
optparse.cpython-311.pyc
72.004 KB
-rw-r--r--
os.cpython-311.opt-1.pyc
47.873 KB
-rw-r--r--
os.cpython-311.opt-2.pyc
36.127 KB
-rw-r--r--
os.cpython-311.pyc
47.891 KB
-rw-r--r--
pathlib.cpython-311.opt-1.pyc
66.148 KB
-rw-r--r--
pathlib.cpython-311.opt-2.pyc
57.913 KB
-rw-r--r--
pathlib.cpython-311.pyc
66.148 KB
-rw-r--r--
pdb.cpython-311.opt-1.pyc
84.672 KB
-rw-r--r--
pdb.cpython-311.opt-2.pyc
71.254 KB
-rw-r--r--
pdb.cpython-311.pyc
84.789 KB
-rw-r--r--
pickle.cpython-311.opt-1.pyc
84.62 KB
-rw-r--r--
pickle.cpython-311.opt-2.pyc
78.941 KB
-rw-r--r--
pickle.cpython-311.pyc
84.873 KB
-rw-r--r--
pickletools.cpython-311.opt-1.pyc
82.589 KB
-rw-r--r--
pickletools.cpython-311.opt-2.pyc
73.884 KB
-rw-r--r--
pickletools.cpython-311.pyc
84.714 KB
-rw-r--r--
pipes.cpython-311.opt-1.pyc
11.701 KB
-rw-r--r--
pipes.cpython-311.opt-2.pyc
8.944 KB
-rw-r--r--
pipes.cpython-311.pyc
11.701 KB
-rw-r--r--
pkgutil.cpython-311.opt-1.pyc
30.854 KB
-rw-r--r--
pkgutil.cpython-311.opt-2.pyc
24.354 KB
-rw-r--r--
pkgutil.cpython-311.pyc
30.854 KB
-rw-r--r--
platform.cpython-311.opt-1.pyc
42.712 KB
-rw-r--r--
platform.cpython-311.opt-2.pyc
34.939 KB
-rw-r--r--
platform.cpython-311.pyc
42.712 KB
-rw-r--r--
plistlib.cpython-311.opt-1.pyc
44.731 KB
-rw-r--r--
plistlib.cpython-311.opt-2.pyc
42.36 KB
-rw-r--r--
plistlib.cpython-311.pyc
44.878 KB
-rw-r--r--
poplib.cpython-311.opt-1.pyc
20.492 KB
-rw-r--r--
poplib.cpython-311.opt-2.pyc
15.789 KB
-rw-r--r--
poplib.cpython-311.pyc
20.492 KB
-rw-r--r--
posixpath.cpython-311.opt-1.pyc
19.72 KB
-rw-r--r--
posixpath.cpython-311.opt-2.pyc
18.129 KB
-rw-r--r--
posixpath.cpython-311.pyc
19.72 KB
-rw-r--r--
pprint.cpython-311.opt-1.pyc
32.738 KB
-rw-r--r--
pprint.cpython-311.opt-2.pyc
30.638 KB
-rw-r--r--
pprint.cpython-311.pyc
32.792 KB
-rw-r--r--
profile.cpython-311.opt-1.pyc
22.949 KB
-rw-r--r--
profile.cpython-311.opt-2.pyc
20.054 KB
-rw-r--r--
profile.cpython-311.pyc
23.408 KB
-rw-r--r--
pstats.cpython-311.opt-1.pyc
40.901 KB
-rw-r--r--
pstats.cpython-311.opt-2.pyc
38.091 KB
-rw-r--r--
pstats.cpython-311.pyc
40.901 KB
-rw-r--r--
pty.cpython-311.opt-1.pyc
8.258 KB
-rw-r--r--
pty.cpython-311.opt-2.pyc
7.52 KB
-rw-r--r--
pty.cpython-311.pyc
8.258 KB
-rw-r--r--
py_compile.cpython-311.opt-1.pyc
10.537 KB
-rw-r--r--
py_compile.cpython-311.opt-2.pyc
7.303 KB
-rw-r--r--
py_compile.cpython-311.pyc
10.537 KB
-rw-r--r--
pyclbr.cpython-311.opt-1.pyc
15.521 KB
-rw-r--r--
pyclbr.cpython-311.opt-2.pyc
12.564 KB
-rw-r--r--
pyclbr.cpython-311.pyc
15.521 KB
-rw-r--r--
pydoc.cpython-311.opt-1.pyc
154.552 KB
-rw-r--r--
pydoc.cpython-311.opt-2.pyc
145.153 KB
-rw-r--r--
pydoc.cpython-311.pyc
154.61 KB
-rw-r--r--
queue.cpython-311.opt-1.pyc
16.083 KB
-rw-r--r--
queue.cpython-311.opt-2.pyc
11.921 KB
-rw-r--r--
queue.cpython-311.pyc
16.083 KB
-rw-r--r--
quopri.cpython-311.opt-1.pyc
10.235 KB
-rw-r--r--
quopri.cpython-311.opt-2.pyc
9.257 KB
-rw-r--r--
quopri.cpython-311.pyc
10.618 KB
-rw-r--r--
random.cpython-311.opt-1.pyc
33.73 KB
-rw-r--r--
random.cpython-311.opt-2.pyc
26.79 KB
-rw-r--r--
random.cpython-311.pyc
33.73 KB
-rw-r--r--
reprlib.cpython-311.opt-1.pyc
9.467 KB
-rw-r--r--
reprlib.cpython-311.opt-2.pyc
9.32 KB
-rw-r--r--
reprlib.cpython-311.pyc
9.467 KB
-rw-r--r--
rlcompleter.cpython-311.opt-1.pyc
8.814 KB
-rw-r--r--
rlcompleter.cpython-311.opt-2.pyc
6.24 KB
-rw-r--r--
rlcompleter.cpython-311.pyc
8.814 KB
-rw-r--r--
runpy.cpython-311.opt-1.pyc
15.754 KB
-rw-r--r--
runpy.cpython-311.opt-2.pyc
13.396 KB
-rw-r--r--
runpy.cpython-311.pyc
15.754 KB
-rw-r--r--
sched.cpython-311.opt-1.pyc
8.221 KB
-rw-r--r--
sched.cpython-311.opt-2.pyc
5.305 KB
-rw-r--r--
sched.cpython-311.pyc
8.221 KB
-rw-r--r--
secrets.cpython-311.opt-1.pyc
2.811 KB
-rw-r--r--
secrets.cpython-311.opt-2.pyc
1.813 KB
-rw-r--r--
secrets.cpython-311.pyc
2.811 KB
-rw-r--r--
selectors.cpython-311.opt-1.pyc
27.886 KB
-rw-r--r--
selectors.cpython-311.opt-2.pyc
23.95 KB
-rw-r--r--
selectors.cpython-311.pyc
27.886 KB
-rw-r--r--
shelve.cpython-311.opt-1.pyc
13.563 KB
-rw-r--r--
shelve.cpython-311.opt-2.pyc
9.514 KB
-rw-r--r--
shelve.cpython-311.pyc
13.563 KB
-rw-r--r--
shlex.cpython-311.opt-1.pyc
14.374 KB
-rw-r--r--
shlex.cpython-311.opt-2.pyc
13.875 KB
-rw-r--r--
shlex.cpython-311.pyc
14.374 KB
-rw-r--r--
shutil.cpython-311.opt-1.pyc
71.543 KB
-rw-r--r--
shutil.cpython-311.opt-2.pyc
59.681 KB
-rw-r--r--
shutil.cpython-311.pyc
71.543 KB
-rw-r--r--
signal.cpython-311.opt-1.pyc
5.002 KB
-rw-r--r--
signal.cpython-311.opt-2.pyc
4.798 KB
-rw-r--r--
signal.cpython-311.pyc
5.002 KB
-rw-r--r--
site.cpython-311.opt-1.pyc
29.774 KB
-rw-r--r--
site.cpython-311.opt-2.pyc
24.461 KB
-rw-r--r--
site.cpython-311.pyc
29.774 KB
-rw-r--r--
smtpd.cpython-311.opt-1.pyc
42.657 KB
-rw-r--r--
smtpd.cpython-311.opt-2.pyc
40.115 KB
-rw-r--r--
smtpd.cpython-311.pyc
42.657 KB
-rw-r--r--
smtplib.cpython-311.opt-1.pyc
52.706 KB
-rw-r--r--
smtplib.cpython-311.opt-2.pyc
36.916 KB
-rw-r--r--
smtplib.cpython-311.pyc
52.867 KB
-rw-r--r--
sndhdr.cpython-311.opt-1.pyc
12.15 KB
-rw-r--r--
sndhdr.cpython-311.opt-2.pyc
10.853 KB
-rw-r--r--
sndhdr.cpython-311.pyc
12.15 KB
-rw-r--r--
socket.cpython-311.opt-1.pyc
44.585 KB
-rw-r--r--
socket.cpython-311.opt-2.pyc
36.252 KB
-rw-r--r--
socket.cpython-311.pyc
44.628 KB
-rw-r--r--
socketserver.cpython-311.opt-1.pyc
36.203 KB
-rw-r--r--
socketserver.cpython-311.opt-2.pyc
25.883 KB
-rw-r--r--
socketserver.cpython-311.pyc
36.203 KB
-rw-r--r--
sre_compile.cpython-311.opt-1.pyc
0.81 KB
-rw-r--r--
sre_compile.cpython-311.opt-2.pyc
0.81 KB
-rw-r--r--
sre_compile.cpython-311.pyc
0.81 KB
-rw-r--r--
sre_constants.cpython-311.opt-1.pyc
0.813 KB
-rw-r--r--
sre_constants.cpython-311.opt-2.pyc
0.813 KB
-rw-r--r--
sre_constants.cpython-311.pyc
0.813 KB
-rw-r--r--
sre_parse.cpython-311.opt-1.pyc
0.806 KB
-rw-r--r--
sre_parse.cpython-311.opt-2.pyc
0.806 KB
-rw-r--r--
sre_parse.cpython-311.pyc
0.806 KB
-rw-r--r--
ssl.cpython-311.opt-1.pyc
71.892 KB
-rw-r--r--
ssl.cpython-311.opt-2.pyc
61.316 KB
-rw-r--r--
ssl.cpython-311.pyc
71.892 KB
-rw-r--r--
stat.cpython-311.opt-1.pyc
5.424 KB
-rw-r--r--
stat.cpython-311.opt-2.pyc
4.832 KB
-rw-r--r--
stat.cpython-311.pyc
5.424 KB
-rw-r--r--
statistics.cpython-311.opt-1.pyc
56.796 KB
-rw-r--r--
statistics.cpython-311.opt-2.pyc
37.721 KB
-rw-r--r--
statistics.cpython-311.pyc
57.05 KB
-rw-r--r--
string.cpython-311.opt-1.pyc
12.357 KB
-rw-r--r--
string.cpython-311.opt-2.pyc
11.284 KB
-rw-r--r--
string.cpython-311.pyc
12.357 KB
-rw-r--r--
stringprep.cpython-311.opt-1.pyc
25.851 KB
-rw-r--r--
stringprep.cpython-311.opt-2.pyc
25.633 KB
-rw-r--r--
stringprep.cpython-311.pyc
25.921 KB
-rw-r--r--
struct.cpython-311.opt-1.pyc
0.387 KB
-rw-r--r--
struct.cpython-311.opt-2.pyc
0.387 KB
-rw-r--r--
struct.cpython-311.pyc
0.387 KB
-rw-r--r--
subprocess.cpython-311.opt-1.pyc
82.698 KB
-rw-r--r--
subprocess.cpython-311.opt-2.pyc
70.994 KB
-rw-r--r--
subprocess.cpython-311.pyc
82.837 KB
-rw-r--r--
sunau.cpython-311.opt-1.pyc
26.387 KB
-rw-r--r--
sunau.cpython-311.opt-2.pyc
21.902 KB
-rw-r--r--
sunau.cpython-311.pyc
26.387 KB
-rw-r--r--
symtable.cpython-311.opt-1.pyc
18.87 KB
-rw-r--r--
symtable.cpython-311.opt-2.pyc
16.447 KB
-rw-r--r--
symtable.cpython-311.pyc
19.065 KB
-rw-r--r--
sysconfig.cpython-311.opt-1.pyc
30.957 KB
-rw-r--r--
sysconfig.cpython-311.opt-2.pyc
28.311 KB
-rw-r--r--
sysconfig.cpython-311.pyc
30.957 KB
-rw-r--r--
tabnanny.cpython-311.opt-1.pyc
12.66 KB
-rw-r--r--
tabnanny.cpython-311.opt-2.pyc
11.754 KB
-rw-r--r--
tabnanny.cpython-311.pyc
12.66 KB
-rw-r--r--
tarfile.cpython-311.opt-1.pyc
131.721 KB
-rw-r--r--
tarfile.cpython-311.opt-2.pyc
117.385 KB
-rw-r--r--
tarfile.cpython-311.pyc
131.738 KB
-rw-r--r--
telnetlib.cpython-311.opt-1.pyc
30.366 KB
-rw-r--r--
telnetlib.cpython-311.opt-2.pyc
23.203 KB
-rw-r--r--
telnetlib.cpython-311.pyc
30.366 KB
-rw-r--r--
tempfile.cpython-311.opt-1.pyc
41.186 KB
-rw-r--r--
tempfile.cpython-311.opt-2.pyc
34.718 KB
-rw-r--r--
tempfile.cpython-311.pyc
41.186 KB
-rw-r--r--
textwrap.cpython-311.opt-1.pyc
19.13 KB
-rw-r--r--
textwrap.cpython-311.opt-2.pyc
12.165 KB
-rw-r--r--
textwrap.cpython-311.pyc
19.151 KB
-rw-r--r--
this.cpython-311.opt-1.pyc
1.574 KB
-rw-r--r--
this.cpython-311.opt-2.pyc
1.574 KB
-rw-r--r--
this.cpython-311.pyc
1.574 KB
-rw-r--r--
threading.cpython-311.opt-1.pyc
67.582 KB
-rw-r--r--
threading.cpython-311.opt-2.pyc
50.04 KB
-rw-r--r--
threading.cpython-311.pyc
68.679 KB
-rw-r--r--
timeit.cpython-311.opt-1.pyc
16.082 KB
-rw-r--r--
timeit.cpython-311.opt-2.pyc
10.4 KB
-rw-r--r--
timeit.cpython-311.pyc
16.082 KB
-rw-r--r--
token.cpython-311.opt-1.pyc
3.651 KB
-rw-r--r--
token.cpython-311.opt-2.pyc
3.62 KB
-rw-r--r--
token.cpython-311.pyc
3.651 KB
-rw-r--r--
tokenize.cpython-311.opt-1.pyc
29.594 KB
-rw-r--r--
tokenize.cpython-311.opt-2.pyc
25.874 KB
-rw-r--r--
tokenize.cpython-311.pyc
29.662 KB
-rw-r--r--
trace.cpython-311.opt-1.pyc
35.135 KB
-rw-r--r--
trace.cpython-311.opt-2.pyc
32.309 KB
-rw-r--r--
trace.cpython-311.pyc
35.135 KB
-rw-r--r--
traceback.cpython-311.opt-1.pyc
47.55 KB
-rw-r--r--
traceback.cpython-311.opt-2.pyc
37.815 KB
-rw-r--r--
traceback.cpython-311.pyc
47.595 KB
-rw-r--r--
tracemalloc.cpython-311.opt-1.pyc
28.418 KB
-rw-r--r--
tracemalloc.cpython-311.opt-2.pyc
27.082 KB
-rw-r--r--
tracemalloc.cpython-311.pyc
28.418 KB
-rw-r--r--
tty.cpython-311.opt-1.pyc
1.993 KB
-rw-r--r--
tty.cpython-311.opt-2.pyc
1.897 KB
-rw-r--r--
tty.cpython-311.pyc
1.993 KB
-rw-r--r--
types.cpython-311.opt-1.pyc
14.487 KB
-rw-r--r--
types.cpython-311.opt-2.pyc
13.109 KB
-rw-r--r--
types.cpython-311.pyc
14.487 KB
-rw-r--r--
typing.cpython-311.opt-1.pyc
157.068 KB
-rw-r--r--
typing.cpython-311.opt-2.pyc
120.813 KB
-rw-r--r--
typing.cpython-311.pyc
157.882 KB
-rw-r--r--
uu.cpython-311.opt-1.pyc
8.604 KB
-rw-r--r--
uu.cpython-311.opt-2.pyc
8.378 KB
-rw-r--r--
uu.cpython-311.pyc
8.604 KB
-rw-r--r--
uuid.cpython-311.opt-1.pyc
32.037 KB
-rw-r--r--
uuid.cpython-311.opt-2.pyc
24.589 KB
-rw-r--r--
uuid.cpython-311.pyc
32.308 KB
-rw-r--r--
warnings.cpython-311.opt-1.pyc
23.5 KB
-rw-r--r--
warnings.cpython-311.opt-2.pyc
20.866 KB
-rw-r--r--
warnings.cpython-311.pyc
24.489 KB
-rw-r--r--
wave.cpython-311.opt-1.pyc
31.524 KB
-rw-r--r--
wave.cpython-311.opt-2.pyc
25.165 KB
-rw-r--r--
wave.cpython-311.pyc
31.594 KB
-rw-r--r--
weakref.cpython-311.opt-1.pyc
34.113 KB
-rw-r--r--
weakref.cpython-311.opt-2.pyc
30.948 KB
-rw-r--r--
weakref.cpython-311.pyc
34.153 KB
-rw-r--r--
webbrowser.cpython-311.opt-1.pyc
32.041 KB
-rw-r--r--
webbrowser.cpython-311.opt-2.pyc
29.746 KB
-rw-r--r--
webbrowser.cpython-311.pyc
32.066 KB
-rw-r--r--
xdrlib.cpython-311.opt-1.pyc
12.85 KB
-rw-r--r--
xdrlib.cpython-311.opt-2.pyc
12.379 KB
-rw-r--r--
xdrlib.cpython-311.pyc
12.85 KB
-rw-r--r--
zipapp.cpython-311.opt-1.pyc
11.284 KB
-rw-r--r--
zipapp.cpython-311.opt-2.pyc
10.159 KB
-rw-r--r--
zipapp.cpython-311.pyc
11.284 KB
-rw-r--r--
zipfile.cpython-311.opt-1.pyc
116.277 KB
-rw-r--r--
zipfile.cpython-311.opt-2.pyc
106.737 KB
-rw-r--r--
zipfile.cpython-311.pyc
116.327 KB
-rw-r--r--
zipimport.cpython-311.opt-1.pyc
28.989 KB
-rw-r--r--
zipimport.cpython-311.opt-2.pyc
25.389 KB
-rw-r--r--
zipimport.cpython-311.pyc
29.104 KB
-rw-r--r--