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/python312/lib64/python3.12/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //opt/alt/python312/lib64/python3.12/__pycache__/difflib.cpython-312.pyc
�

5[Yh�E��n�dZgd�ZddlmZddlmZddlm	Z	edd�Z
d�ZGd	�d
�Zd$d�Z
d�ZGd
�d�ZddlZej"d�j$fd�Zd%d�Zd�Z		d&d�Zd�Z		d&d�Zd�Z		d'd�Zdefd�Zddefd�ZdZdZdZdZ Gd�d e!�Z"[d!�Z#d"�Z$e%d#k(re$�yy)(ae
Module difflib -- helpers for computing deltas between objects.

Function get_close_matches(word, possibilities, n=3, cutoff=0.6):
    Use SequenceMatcher to return list of the best "good enough" matches.

Function context_diff(a, b):
    For two lists of strings, return a delta in context diff format.

Function ndiff(a, b):
    Return a delta: the difference between `a` and `b` (lists of strings).

Function restore(delta, which):
    Return one of the two sequences that generated an ndiff delta.

Function unified_diff(a, b):
    For two lists of strings, return a delta in unified diff format.

Class SequenceMatcher:
    A flexible class for comparing pairs of sequences of any type.

Class Differ:
    For producing human-readable deltas from sequences of lines of text.

Class HtmlDiff:
    For producing HTML side by side comparison with change highlights.
)�get_close_matches�ndiff�restore�SequenceMatcher�Differ�IS_CHARACTER_JUNK�IS_LINE_JUNK�context_diff�unified_diff�
diff_bytes�HtmlDiff�Match�)�nlargest)�
namedtuple)�GenericAliasr
za b sizec��|rd|z|zSy)Ng@��?�)�matches�lengths  �./opt/alt/python312/lib64/python3.12/difflib.py�_calculate_ratior's��
��W�}�v�%�%��c�n�eZdZdZdd�Zd�Zd�Zd�Zd�Zdd�Z	d	�Z
d
�Zdd�Zd�Z
d
�Zd�Zee�Zy)rao

    SequenceMatcher is a flexible class for comparing pairs of sequences of
    any type, so long as the sequence elements are hashable.  The basic
    algorithm predates, and is a little fancier than, an algorithm
    published in the late 1980's by Ratcliff and Obershelp under the
    hyperbolic name "gestalt pattern matching".  The basic idea is to find
    the longest contiguous matching subsequence that contains no "junk"
    elements (R-O doesn't address junk).  The same idea is then applied
    recursively to the pieces of the sequences to the left and to the right
    of the matching subsequence.  This does not yield minimal edit
    sequences, but does tend to yield matches that "look right" to people.

    SequenceMatcher tries to compute a "human-friendly diff" between two
    sequences.  Unlike e.g. UNIX(tm) diff, the fundamental notion is the
    longest *contiguous* & junk-free matching subsequence.  That's what
    catches peoples' eyes.  The Windows(tm) windiff has another interesting
    notion, pairing up elements that appear uniquely in each sequence.
    That, and the method here, appear to yield more intuitive difference
    reports than does diff.  This method appears to be the least vulnerable
    to syncing up on blocks of "junk lines", though (like blank lines in
    ordinary text files, or maybe "<P>" lines in HTML files).  That may be
    because this is the only method of the 3 that has a *concept* of
    "junk" <wink>.

    Example, comparing two strings, and considering blanks to be "junk":

    >>> s = SequenceMatcher(lambda x: x == " ",
    ...                     "private Thread currentThread;",
    ...                     "private volatile Thread currentThread;")
    >>>

    .ratio() returns a float in [0, 1], measuring the "similarity" of the
    sequences.  As a rule of thumb, a .ratio() value over 0.6 means the
    sequences are close matches:

    >>> print(round(s.ratio(), 3))
    0.866
    >>>

    If you're only interested in where the sequences match,
    .get_matching_blocks() is handy:

    >>> for block in s.get_matching_blocks():
    ...     print("a[%d] and b[%d] match for %d elements" % block)
    a[0] and b[0] match for 8 elements
    a[8] and b[17] match for 21 elements
    a[29] and b[38] match for 0 elements

    Note that the last tuple returned by .get_matching_blocks() is always a
    dummy, (len(a), len(b), 0), and this is the only case in which the last
    tuple element (number of elements matched) is 0.

    If you want to know how to change the first sequence into the second,
    use .get_opcodes():

    >>> for opcode in s.get_opcodes():
    ...     print("%6s a[%d:%d] b[%d:%d]" % opcode)
     equal a[0:8] b[0:8]
    insert a[8:8] b[8:17]
     equal a[8:29] b[17:38]

    See the Differ class for a fancy human-friendly file differencer, which
    uses SequenceMatcher both to compare sequences of lines, and to compare
    sequences of characters within similar (near-matching) lines.

    See also function get_close_matches() in this module, which shows how
    simple code building on SequenceMatcher can be used to do useful work.

    Timing:  Basic R-O is cubic time worst case and quadratic time expected
    case.  SequenceMatcher is quadratic time for the worst case and has
    expected-case behavior dependent in a complicated way on how many
    elements the sequences have in common; best case time is linear.
    Nc�`�||_dx|_|_||_|j	||�y)a!Construct a SequenceMatcher.

        Optional arg isjunk is None (the default), or a one-argument
        function that takes a sequence element and returns true iff the
        element is junk.  None is equivalent to passing "lambda x: 0", i.e.
        no elements are considered to be junk.  For example, pass
            lambda x: x in " \t"
        if you're comparing lines as sequences of characters, and don't
        want to synch up on blanks or hard tabs.

        Optional arg a is the first of two sequences to be compared.  By
        default, an empty string.  The elements of a must be hashable.  See
        also .set_seqs() and .set_seq1().

        Optional arg b is the second of two sequences to be compared.  By
        default, an empty string.  The elements of b must be hashable. See
        also .set_seqs() and .set_seq2().

        Optional arg autojunk should be set to False to disable the
        "automatic junk heuristic" that treats popular elements as junk
        (see module documentation for more information).
        N)�isjunk�a�b�autojunk�set_seqs)�selfrrrrs     r�__init__zSequenceMatcher.__init__xs/��v��������� ��
��
�
�a��rc�H�|j|�|j|�y)z�Set the two sequences to be compared.

        >>> s = SequenceMatcher()
        >>> s.set_seqs("abcd", "bcde")
        >>> s.ratio()
        0.75
        N)�set_seq1�set_seq2)r!rrs   rr zSequenceMatcher.set_seqs�s��	
�
�
�a���
�
�a�rc�L�||jury||_dx|_|_y)aMSet the first sequence to be compared.

        The second sequence to be compared is not changed.

        >>> s = SequenceMatcher(None, "abcd", "bcde")
        >>> s.ratio()
        0.75
        >>> s.set_seq1("bcde")
        >>> s.ratio()
        1.0
        >>>

        SequenceMatcher computes and caches detailed information about the
        second sequence, so if you want to compare one sequence S against
        many sequences, use .set_seq2(S) once and call .set_seq1(x)
        repeatedly for each of the other sequences.

        See also set_seqs() and set_seq2().
        N)r�matching_blocks�opcodes)r!rs  rr$zSequenceMatcher.set_seq1�s(��*
����;�����.2�2���t�|rc�z�||jury||_dx|_|_d|_|j	�y)aMSet the second sequence to be compared.

        The first sequence to be compared is not changed.

        >>> s = SequenceMatcher(None, "abcd", "bcde")
        >>> s.ratio()
        0.75
        >>> s.set_seq2("abcd")
        >>> s.ratio()
        1.0
        >>>

        SequenceMatcher computes and caches detailed information about the
        second sequence, so if you want to compare one sequence S against
        many sequences, use .set_seq2(S) once and call .set_seq1(x)
        repeatedly for each of the other sequences.

        See also set_seqs() and set_seq1().
        N)rr'r(�
fullbcount�_SequenceMatcher__chain_b)r!rs  rr%zSequenceMatcher.set_seq2�s9��*
����;�����.2�2���t�|�������rc�<�|j}ix|_}t|�D](\}}|j|g�}|j	|��*t�x|_}|j}|r9|j�D]}||�s�|j|��|D]}||=�t�x|_
}t|�}	|jrQ|	dk\rK|	dzdz}
|j�D]%\}}t|�|
kDs�|j|��'|D]}||=�yyy)N���d�)r�b2j�	enumerate�
setdefault�append�set�bjunkr�keys�add�bpopular�lenr�items)r!rr0�i�elt�indices�junkr�popular�n�ntest�idxss            r�	__chain_bzSequenceMatcher.__chain_b
s��
�F�F������3���l�F�A�s��n�n�S�"�-�G��N�N�1��#�
 �E�!��
�T�������x�x�z���#�;��H�H�S�M�"�����H��#&�%�'��
����F���=�=�Q�#�X���H�q�L�E� �Y�Y�[�	��T��t�9�u�$��K�K��$�)�����H��&�=rc���|j|j|j|jjf\}}}}|�t|�}|�t|�}||d}}
}	i}g}
t
||�D]e}|j}i}|j|||
�D];}||kr�	||k\rn.||dz
d�dzx}||<||kDs�*||z
dz||z
dz|}}
}	�=|}�g|	|kDr]|
|kDrX|||
dz
�sJ||	dz
||
dz
k(r9|	dz
|
dz
|dz}}
}	|	|kDr%|
|kDr |||
dz
�s||	dz
||
dz
k(r�9|	|z|kr\|
|z|krT|||
|z�sF||	|z||
|zk(r5|dz
}|	|z|kr(|
|z|kr |||
|z�s||	|z||
|zk(r�5|	|kDr]|
|kDrX|||
dz
�rJ||	dz
||
dz
k(r9|	dz
|
dz
|dz}}
}	|	|kDr%|
|kDr |||
dz
�r||	dz
||
dz
k(r�9|	|z|kr\|
|z|krT|||
|z�rF||	|z||
|zk(r5|dz}|	|z|kr(|
|z|kr |||
|z�r||	|z||
|zk(r�5t|	|
|�S)aAFind longest matching block in a[alo:ahi] and b[blo:bhi].

        By default it will find the longest match in the entirety of a and b.

        If isjunk is not defined:

        Return (i,j,k) such that a[i:i+k] is equal to b[j:j+k], where
            alo <= i <= i+k <= ahi
            blo <= j <= j+k <= bhi
        and for all (i',j',k') meeting those conditions,
            k >= k'
            i <= i'
            and if i == i', j <= j'

        In other words, of all maximal matching blocks, return one that
        starts earliest in a, and of all those maximal matching blocks that
        start earliest in a, return the one that starts earliest in b.

        >>> s = SequenceMatcher(None, " abcd", "abcd abcd")
        >>> s.find_longest_match(0, 5, 0, 9)
        Match(a=0, b=4, size=5)

        If isjunk is defined, first the longest matching block is
        determined as above, but with the additional restriction that no
        junk element appears in the block.  Then that block is extended as
        far as possible by matching (only) junk elements on both sides.  So
        the resulting block never matches on junk except as identical junk
        happens to be adjacent to an "interesting" match.

        Here's the same example as before, but considering blanks to be
        junk.  That prevents " abcd" from matching the " abcd" at the tail
        end of the second sequence directly.  Instead only the "abcd" can
        match, and matches the leftmost "abcd" in the second sequence:

        >>> s = SequenceMatcher(lambda x: x==" ", " abcd", "abcd abcd")
        >>> s.find_longest_match(0, 5, 0, 9)
        Match(a=1, b=0, size=4)

        If no blocks match, return (alo, blo, 0).

        >>> s = SequenceMatcher(None, "ab", "c")
        >>> s.find_longest_match(0, 2, 0, 1)
        Match(a=0, b=0, size=0)
        rr/)	rrr0r5�__contains__r9�range�getr
)r!�alo�ahi�blo�bhirrr0�isbjunk�besti�bestj�bestsize�j2len�nothingr;�j2lenget�newj2len�j�ks                   r�find_longest_matchz"SequenceMatcher.find_longest_match1s:��t"�V�V�T�V�V�T�X�X�t�z�z�7N�7N�N���1�c�7��;��a�&�C��;��a�&�C�!$�c�1�h�u�������s�C��A��y�y�H��H��W�W�Q�q�T�7�+���s�7����8��"*�1�Q�3��"2�Q�"6�6��H�Q�K��x�<�-.�q�S��U�A�a�C��E�1�(�5�E�,��E�!�(�c�k�e�c�k��!�E�!�G�*�%���a��j�A�e�A�g�J�&�%*�1�W�e�A�g�x��z�(�5�E��c�k�e�c�k��!�E�!�G�*�%���a��j�A�e�A�g�J�&��H�n�s�"�u�X�~��';��!�E�(�N�+�,���h���1�U�8�^�#4�4���M�H��H�n�s�"�u�X�~��';��!�E�(�N�+�,���h���1�U�8�^�#4�4��c�k�e�c�k��a��a��j�!���a��j�A�e�A�g�J�&�%*�1�W�e�A�g�x��z�(�5�E��c�k�e�c�k��a��a��j�!���a��j�A�e�A�g�J�&��H�n�s�"�u�X�~��';��a��h��'�(���h���1�U�8�^�#4�4��!�|�H��H�n�s�"�u�X�~��';��a��h��'�(���h���1�U�8�^�#4�4��U�E�8�,�,rc� �|j�|jSt|j�t|j�}}d|d|fg}g}|r�|j	�\}}}}|j||||�x\}	}
}}|r[|j
|�||	kr||
kr|j
||	||
f�|	|z|kr#|
|z|kr|j
|	|z||
|z|f�|r��|j�dx}
x}}g}|D]8\}}}|
|z|k(r||z|k(r||z
}�|r|j
|
||f�|||}}}
�:|r|j
|
||f�|j
||df�tttj|��|_|jS)aReturn list of triples describing matching subsequences.

        Each triple is of the form (i, j, n), and means that
        a[i:i+n] == b[j:j+n].  The triples are monotonically increasing in
        i and in j.  New in Python 2.5, it's also guaranteed that if
        (i, j, n) and (i', j', n') are adjacent triples in the list, and
        the second is not the last triple in the list, then i+n != i' or
        j+n != j'.  IOW, adjacent triples never describe adjacent equal
        blocks.

        The last triple is a dummy, (len(a), len(b), 0), and is the only
        triple with n==0.

        >>> s = SequenceMatcher(None, "abxcd", "abcd")
        >>> list(s.get_matching_blocks())
        [Match(a=0, b=0, size=2), Match(a=3, b=2, size=2), Match(a=5, b=4, size=0)]
        r)r'r9rr�poprVr3�sort�list�mapr
�_make)r!�la�lb�queuer'rHrIrJrKr;rTrU�x�i1�j1�k1�non_adjacent�i2�j2�k2s                    r�get_matching_blocksz#SequenceMatcher.get_matching_blocks�s���&���+��'�'�'��T�V�V��c�$�&�&�k�B���R��B�� �����!&�����C��c�3��1�1�#�s�C��E�E�G�A�q�!�a���&�&�q�)���7�s�Q�w��L�L�#�q�#�q�!1�2��Q�3��9��1��s���L�L�!�A�#�s�A�a�C��!5�6��	����
����R�"���)�J�B��B��B�w�"�}��b��B���b���
� �'�'��R���5���R��B��*������R���-����b�"�a�[�*�#�C����\�$B�C����#�#�#rc�4�|j�|jSdx}}gx|_}|j�D]_\}}}d}||kr||krd}n||krd}n||krd}|r|j|||||f�||z||z}}|s�J|jd||||f��a|S)a[Return list of 5-tuples describing how to turn a into b.

        Each tuple is of the form (tag, i1, i2, j1, j2).  The first tuple
        has i1 == j1 == 0, and remaining tuples have i1 == the i2 from the
        tuple preceding it, and likewise for j1 == the previous j2.

        The tags are strings, with these meanings:

        'replace':  a[i1:i2] should be replaced by b[j1:j2]
        'delete':   a[i1:i2] should be deleted.
                    Note that j1==j2 in this case.
        'insert':   b[j1:j2] should be inserted at a[i1:i1].
                    Note that i1==i2 in this case.
        'equal':    a[i1:i2] == b[j1:j2]

        >>> a = "qabxcd"
        >>> b = "abycdf"
        >>> s = SequenceMatcher(None, a, b)
        >>> for tag, i1, i2, j1, j2 in s.get_opcodes():
        ...    print(("%7s a[%d:%d] (%s) b[%d:%d] (%s)" %
        ...           (tag, i1, i2, a[i1:i2], j1, j2, b[j1:j2])))
         delete a[0:1] (q) b[0:0] ()
          equal a[1:3] (ab) b[0:2] (ab)
        replace a[3:4] (x) b[2:3] (y)
          equal a[4:6] (cd) b[3:5] (cd)
         insert a[6:6] () b[5:6] (f)
        r��replace�delete�insert�equal)r(rhr3)r!r;rT�answer�ai�bj�size�tags        r�get_opcodeszSequenceMatcher.get_opcodes�s���:�<�<�#��<�<���	��A� "�"���v� �4�4�6�L�B��D��C��2�v�!�b�&����R�����R������
�
��Q��A�r�2�4��d�7�B�t�G�q�A���
�
���Q��A�6�8�'7�(�
rc#�vK�|j�}|sdg}|dddk(r/|d\}}}}}|t|||z
�|t|||z
�|f|d<|dddk(r/|d\}}}}}||t|||z�|t|||z�f|d<||z}g}	|D]\}}}}}|dk(r\||z
|kDrT|	j||t|||z�|t|||z�f�|	��g}	t|||z
�t|||z
�}}|	j|||||f���|	rt	|	�dk(r|	dddk(s|	��yyy�w)a� Isolate change clusters by eliminating ranges with no changes.

        Return a generator of groups with up to n lines of context.
        Each group is in the same format as returned by get_opcodes().

        >>> from pprint import pprint
        >>> a = list(map(str, range(1,40)))
        >>> b = a[:]
        >>> b[8:8] = ['i']     # Make an insertion
        >>> b[20] += 'x'       # Make a replacement
        >>> b[23:28] = []      # Make a deletion
        >>> b[30] += 'y'       # Make another replacement
        >>> pprint(list(SequenceMatcher(None,a,b).get_grouped_opcodes()))
        [[('equal', 5, 8, 5, 8), ('insert', 8, 8, 8, 9), ('equal', 8, 11, 9, 12)],
         [('equal', 16, 19, 17, 20),
          ('replace', 19, 20, 20, 21),
          ('equal', 20, 22, 21, 23),
          ('delete', 22, 27, 23, 23),
          ('equal', 27, 30, 23, 26)],
         [('equal', 31, 34, 27, 30),
          ('replace', 34, 35, 30, 31),
          ('equal', 35, 38, 31, 34)]]
        )rnrr/rr/rrn���r/N)rt�max�minr3r9)
r!r@�codesrsrarerbrf�nn�groups
          r�get_grouped_opcodesz#SequenceMatcher.get_grouped_opcodes#s�����2� � �"���*�+�E���8�A�;�'�!�"'��(��C��R��R��C��B�q�D�M�2�s�2�r�!�t�}�b�@�E�!�H���9�Q�<�7�"�"'��)��C��R��R��R��R��A����C��B�q�D�M�A�E�"�I�
��U����#(��C��R��R��g�~�"�R�%�"�*����c�2�s�2�r�!�t�}�b�#�b�"�Q�$�-�H�I������R��A����B��1��
�B���L�L�#�r�2�r�2�.�/�$)��#�e�*�a�-�E�!�H�Q�K�7�,B��K�-C�5�s�D7D9c��td�|j�D��}t|t|j�t|j
�z�S)a�Return a measure of the sequences' similarity (float in [0,1]).

        Where T is the total number of elements in both sequences, and
        M is the number of matches, this is 2.0*M / T.
        Note that this is 1 if the sequences are identical, and 0 if
        they have nothing in common.

        .ratio() is expensive to compute if you haven't already computed
        .get_matching_blocks() or .get_opcodes(), in which case you may
        want to try .quick_ratio() or .real_quick_ratio() first to get an
        upper bound.

        >>> s = SequenceMatcher(None, "abcd", "bcde")
        >>> s.ratio()
        0.75
        >>> s.quick_ratio()
        0.75
        >>> s.real_quick_ratio()
        1.0
        c3�&K�|]	}|d���y�w)rvNr)�.0�triples  r�	<genexpr>z(SequenceMatcher.ratio.<locals>.<genexpr>ks����J�/I�V�f�R�j�/I�s�)�sumrhrr9rr)r!rs  r�ratiozSequenceMatcher.ratioUs?��,�J�t�/G�/G�/I�J�J�����T�V�V��s�4�6�6�{�)B�C�Crc��|j�2ix|_}|jD]}|j|d�dz||<�|j}i}|jd}}|jD]5}||�r||}n|j|d�}|dz
||<|dkDs�1|dz}�7t|t
|j�t
|j�z�S)z�Return an upper bound on ratio() relatively quickly.

        This isn't defined beyond that it is an upper bound on .ratio(), and
        is faster to compute.
        rr/)r*rrGrErrr9)r!r*r<�avail�availhasr�numbs       r�quick_ratiozSequenceMatcher.quick_rations����?�?�"�+-�-�D�O�j��v�v��",�.�.��a�"8�1�"<�
�3����_�_�
���!�.�.��'���6�6�C���}��S�z��!�~�~�c�1�-�����E�#�J��a�x�!�A�+��� ���T�V�V��s�4�6�6�{�)B�C�Crc��t|j�t|j�}}tt	||�||z�S)z�Return an upper bound on ratio() very quickly.

        This isn't defined beyond that it is an upper bound on .ratio(), and
        is faster to compute than either .ratio() or .quick_ratio().
        )r9rrrrx)r!r]r^s   r�real_quick_ratioz SequenceMatcher.real_quick_ratio�s6���T�V�V��c�$�&�&�k�B�� ��B���R�"�W�5�5r)NrjrjT)rNrN)�)�__name__�
__module__�__qualname__�__doc__r"r r$r%r+rVrhrtr|r�r�r��classmethodr�__class_getitem__rrrrr,s]��H�T>�@
�3�4�X%�Nr-�hE$�N5�n0�dD�2D�:
6�$�L�1�rrc���|dkDstd|����d|cxkrdksntd|����g}t�}|j|�|D]p}|j|�|j	�|k\s�(|j�|k\s�<|j
�|k\s�P|j|j
�|f��rt||�}|D��cgc]\}}|��	c}}Scc}}w)a�Use SequenceMatcher to return list of the best "good enough" matches.

    word is a sequence for which close matches are desired (typically a
    string).

    possibilities is a list of sequences against which to match word
    (typically a list of strings).

    Optional arg n (default 3) is the maximum number of close matches to
    return.  n must be > 0.

    Optional arg cutoff (default 0.6) is a float in [0, 1].  Possibilities
    that don't score at least that similar to word are ignored.

    The best (no more than n) matches among the possibilities are returned
    in a list, sorted by similarity score, most similar first.

    >>> get_close_matches("appel", ["ape", "apple", "peach", "puppy"])
    ['apple', 'ape']
    >>> import keyword as _keyword
    >>> get_close_matches("wheel", _keyword.kwlist)
    ['while']
    >>> get_close_matches("Apple", _keyword.kwlist)
    []
    >>> get_close_matches("accept", _keyword.kwlist)
    ['except']
    rzn must be > 0: grzcutoff must be in [0.0, 1.0]: )	�
ValueErrorrr%r$r�r�r�r3�	_nlargest)�word�
possibilitiesr@�cutoff�result�sr`�scores        rrr�s���:
��6���3�4�4��&��C���v�G�H�H�
�F���A��J�J�t��
��	�
�
�1�
�����6�)��=�=�?�f�$��7�7�9����M�M�1�7�7�9�a�.�)���q�&�
!�F�$�%�f�(�%��A�f�%�%��%s�C"c�F�djd�t||�D��S)zAReplace whitespace with the original whitespace characters in `s`rjc3�TK�|] \}}|dk(r|j�r|n|���"y�w)� N)�isspace)r�c�tag_cs   rr�z$_keep_original_ws.<locals>.<genexpr>�s/�����%�H�A�u��c�\�a�i�i�k��u�4�%�s�&()�join�zip)r��tag_ss  r�_keep_original_wsr��s&��
�7�7���A�u�
���rc�<�eZdZdZd
d�Zd�Zd�Zd�Zd�Zd�Z	d	�Z
y)ra�
    Differ is a class for comparing sequences of lines of text, and
    producing human-readable differences or deltas.  Differ uses
    SequenceMatcher both to compare sequences of lines, and to compare
    sequences of characters within similar (near-matching) lines.

    Each line of a Differ delta begins with a two-letter code:

        '- '    line unique to sequence 1
        '+ '    line unique to sequence 2
        '  '    line common to both sequences
        '? '    line not present in either input sequence

    Lines beginning with '? ' attempt to guide the eye to intraline
    differences, and were not present in either input sequence.  These lines
    can be confusing if the sequences contain tab characters.

    Note that Differ makes no claim to produce a *minimal* diff.  To the
    contrary, minimal diffs are often counter-intuitive, because they synch
    up anywhere possible, sometimes accidental matches 100 pages apart.
    Restricting synch points to contiguous matches preserves some notion of
    locality, at the occasional cost of producing a longer diff.

    Example: Comparing two texts.

    First we set up the texts, sequences of individual single-line strings
    ending with newlines (such sequences can also be obtained from the
    `readlines()` method of file-like objects):

    >>> text1 = '''  1. Beautiful is better than ugly.
    ...   2. Explicit is better than implicit.
    ...   3. Simple is better than complex.
    ...   4. Complex is better than complicated.
    ... '''.splitlines(keepends=True)
    >>> len(text1)
    4
    >>> text1[0][-1]
    '\n'
    >>> text2 = '''  1. Beautiful is better than ugly.
    ...   3.   Simple is better than complex.
    ...   4. Complicated is better than complex.
    ...   5. Flat is better than nested.
    ... '''.splitlines(keepends=True)

    Next we instantiate a Differ object:

    >>> d = Differ()

    Note that when instantiating a Differ object we may pass functions to
    filter out line and character 'junk'.  See Differ.__init__ for details.

    Finally, we compare the two:

    >>> result = list(d.compare(text1, text2))

    'result' is a list of strings, so let's pretty-print it:

    >>> from pprint import pprint as _pprint
    >>> _pprint(result)
    ['    1. Beautiful is better than ugly.\n',
     '-   2. Explicit is better than implicit.\n',
     '-   3. Simple is better than complex.\n',
     '+   3.   Simple is better than complex.\n',
     '?     ++\n',
     '-   4. Complex is better than complicated.\n',
     '?            ^                     ---- ^\n',
     '+   4. Complicated is better than complex.\n',
     '?           ++++ ^                      ^\n',
     '+   5. Flat is better than nested.\n']

    As a single multi-line string it looks like this:

    >>> print(''.join(result), end="")
        1. Beautiful is better than ugly.
    -   2. Explicit is better than implicit.
    -   3. Simple is better than complex.
    +   3.   Simple is better than complex.
    ?     ++
    -   4. Complex is better than complicated.
    ?            ^                     ---- ^
    +   4. Complicated is better than complex.
    ?           ++++ ^                      ^
    +   5. Flat is better than nested.
    Nc� �||_||_y)a�
        Construct a text differencer, with optional filters.

        The two optional keyword parameters are for filter functions:

        - `linejunk`: A function that should accept a single string argument,
          and return true iff the string is junk. The module-level function
          `IS_LINE_JUNK` may be used to filter out lines without visible
          characters, except for at most one splat ('#').  It is recommended
          to leave linejunk None; the underlying SequenceMatcher class has
          an adaptive notion of "noise" lines that's better than any static
          definition the author has ever been able to craft.

        - `charjunk`: A function that should accept a string of length 1. The
          module-level function `IS_CHARACTER_JUNK` may be used to filter out
          whitespace characters (a blank or tab; **note**: bad idea to include
          newline in this!).  Use of IS_CHARACTER_JUNK is recommended.
        N��linejunk�charjunk)r!r�r�s   rr"zDiffer.__init__*s��(!��
� ��
rc	#�xK�t|j||�}|j�D]�\}}}}}|dk(r|j||||||�}	n\|dk(r|j	d|||�}	nB|dk(r|j	d|||�}	n(|dk(r|j	d|||�}	ntd|����|	Ed	{�����y	7��w)
a�
        Compare two sequences of lines; generate the resulting delta.

        Each sequence must contain individual single-line strings ending with
        newlines. Such sequences can be obtained from the `readlines()` method
        of file-like objects.  The delta generated also consists of newline-
        terminated strings, ready to be printed as-is via the writelines()
        method of a file-like object.

        Example:

        >>> print(''.join(Differ().compare('one\ntwo\nthree\n'.splitlines(True),
        ...                                'ore\ntree\nemu\n'.splitlines(True))),
        ...       end="")
        - one
        ?  ^
        + ore
        ?  ^
        - two
        - three
        ?  -
        + tree
        + emu
        rkrl�-rm�+rnr��unknown tag N)rr�rt�_fancy_replace�_dumpr�)
r!rr�cruncherrsrHrIrJrK�gs
          r�comparezDiffer.compareAs�����4#�4�=�=�!�Q�7��'/�';�';�'=�#�C��c�3���i���'�'��3��Q��S�A������J�J�s�A�s�C�0������J�J�s�A�s�C�0������J�J�s�A�s�C�0�� �S�!:�;�;��L�L�(>�
�s�B.B:�0B8�1B:c#�FK�t||�D]}|�d||�����y�w)z4Generate comparison results for a same-tagged range.r�N)rF)r!rsr`�lo�hir;s      rr�zDiffer._dumpjs%�����r�2��A� �!�A�$�'�'��s�!c#�K�||kr||ksJ�||z
||z
kr)|jd|||�}|jd|||�}n(|jd|||�}|jd|||�}||fD]}	|	Ed{����y7��w)Nr�r�)r�)
r!rrHrIrrJrK�first�secondr�s
          r�_plain_replacezDiffer._plain_replaceos������S�y�S�3�Y�&�&���9�s�S�y� ��Z�Z��Q��S�1�E��Z�Z��Q��S�1�F��Z�Z��Q��S�1�E��Z�Z��Q��S�1�F����A��L�L���s�A5B�7A?�8Bc#�K�d\}}t|j�}	d\}
}t||�D]�}||}
|	j|
�t||�D]t}||}||
k(r|
�||}}
�|	j	|�|	j�|kDs�9|	j
�|kDs�M|	j�|kDs�a|	j�||}}}�v��||kr(|
�|j||||||�Ed{���y|
|d}}}nd}
|j||||�Ed{���||||}}|
��dx}}|	j||�|	j�D]g\}}}}}||z
||z
}}|dk(r|d|zz
}|d|zz
}�)|dk(r	|d	|zz
}�7|d
k(r	|d|zz
}�E|dk(r|d
|zz
}|d
|zz
}�[td|����|j||||�Ed{���nd|z��|j||dz|||dz|�Ed{���y7��7��7�67��w)aL
        When replacing one block of lines with another, search the blocks
        for *similar* lines; the best-matching pair (if any) is used as a
        synch point, and intraline difference marking is done on the
        similar pair. Lots of work, but often worth it.

        Example:

        >>> d = Differ()
        >>> results = d._fancy_replace(['abcDefghiJkl\n'], 0, 1,
        ...                            ['abcdefGhijkl\n'], 0, 1)
        >>> print(''.join(results), end="")
        - abcDefghiJkl
        ?    ^  ^  ^
        + abcdefGhijkl
        ?    ^  ^  ^
        )g�G�z��?g�?�NNNrrjrk�^rlr�rmr�rnr�r��  r/)rr�rFr%r$r�r�r�r��
_fancy_helperr rtr��_qformat)r!rrHrIrrJrK�
best_ratior�r��eqi�eqjrTrqr;rp�best_i�best_j�aelt�belt�atags�btagsrs�ai1�ai2�bj1�bj2r]r^s                             rr�zDiffer._fancy_replace}s�����*(��
�F�"�4�=�=�1�����S�
�s�C��A��1��B����b�!��3��_���q�T����8��{�#$�a�S����!�!�"�%��,�,�.��;��*�*�,�z�9��n�n�&��3�19���1A�1�a���J�!%�!�(����{��.�.�q�#�s�A�s�C�H�H�H��),�c�3�J�F�F��C��%�%�a��f�a��f�E�E�E��v�Y��&�	�d���;���E�E����d�D�)�+3�+?�+?�+A�'��S�#�s�C��s��C�#�I�B���)�#��S�2�X�%�E��S�2�X�%�E��H�_��S�2�X�%�E��H�_��S�2�X�%�E��G�^��S�2�X�%�E��S�2�X�%�E�$��%>�?�?�,B��}�}�T�4���>�>�>���+���%�%�a����3��6�!�8�S�I�I�I�QI��	F��,
?��	J�s[�B	H�H� H�48H�,G>�-'H�H�B7H�H�
+H�8H�9H�H�H�Hc#��K�g}||kr1||kr|j||||||�}n.|jd|||�}n||kr|jd|||�}|Ed{���y7��w)Nr�r�)r�r�)r!rrHrIrrJrKr�s        rr�zDiffer._fancy_helper�si��������9��S�y��'�'��3��Q��S�A���J�J�s�A�s�C�0��
�3�Y��
�
�3��3��,�A����s�AA!�A�A!c#�K�t||�j�}t||�j�}d|z��|rd|�d���d|z��|r	d|�d���yy�w)a�
        Format "?" output and deal with tabs.

        Example:

        >>> d = Differ()
        >>> results = d._qformat('\tabcDefghiJkl\n', '\tabcdefGhijkl\n',
        ...                      '  ^ ^  ^      ', '  ^ ^  ^      ')
        >>> for line in results: print(repr(line))
        ...
        '- \tabcDefghiJkl\n'
        '? \t ^ ^  ^\n'
        '+ \tabcdefGhijkl\n'
        '? \t ^ ^  ^\n'
        �- z? �
�+ N)r��rstrip)r!�aline�bliner�r�s     rr�zDiffer._qformat�sm���� "�%��/�6�6�8��!�%��/�6�6�8���U�l����u�g�R�.� ��U�l����u�g�R�.� ��s�AAr�)r�r�r�r�r"r�r�r�r�r�r�rrrrr�s0��S�j!�.'�R(�
�\J�|
�!rrNz
\s*(?:#\s*)?$c��||�duS)z�
    Return True for ignorable line: iff `line` is blank or contains a single '#'.

    Examples:

    >>> IS_LINE_JUNK('\n')
    True
    >>> IS_LINE_JUNK('  #   \n')
    True
    >>> IS_LINE_JUNK('hello\n')
    False
    Nr)�line�pats  rrrs���t�9�D� � rc�
�||vS)z�
    Return True for ignorable character: iff `ch` is a space or tab.

    Examples:

    >>> IS_CHARACTER_JUNK(' ')
    True
    >>> IS_CHARACTER_JUNK('\t')
    True
    >>> IS_CHARACTER_JUNK('\n')
    False
    >>> IS_CHARACTER_JUNK('x')
    False
    r)�ch�wss  rrr%s
�� ��8�Orc�t�|dz}||z
}|dk(rdj|�S|s|dz}dj||�S�z Convert range to the "ed" formatr/z{}z{},{}��format��start�stop�	beginningrs    r�_format_range_unifiedr�<sI����	�I�
�E�\�F�
��{��{�{�9�%�%���Q��	��>�>�)�V�,�,rc	#�HK�t|||||||�d}td||�j|�D]�}	|sVd}|rdj|�nd}
|rdj|�nd}dj||
|���dj|||���|	d|	d	}
}t	|d
|
d�}t	|d|
d
�}dj|||���|	D]J\}}}}}|dk(r|||D]	}d|z���� |dvr|||D]	}d|z���|dvs�:|||D]	}d|z����L��y�w)a�
    Compare two sequences of lines; generate the delta as a unified diff.

    Unified diffs are a compact way of showing line changes and a few
    lines of context.  The number of context lines is set by 'n' which
    defaults to three.

    By default, the diff control lines (those with ---, +++, or @@) are
    created with a trailing newline.  This is helpful so that inputs
    created from file.readlines() result in diffs that are suitable for
    file.writelines() since both the inputs and outputs have trailing
    newlines.

    For inputs that do not have trailing newlines, set the lineterm
    argument to "" so that the output will be uniformly newline free.

    The unidiff format normally has a header for filenames and modification
    times.  Any or all of these may be specified using strings for
    'fromfile', 'tofile', 'fromfiledate', and 'tofiledate'.
    The modification times are normally expressed in the ISO 8601 format.

    Example:

    >>> for line in unified_diff('one two three four'.split(),
    ...             'zero one tree four'.split(), 'Original', 'Current',
    ...             '2005-01-26 23:30:50', '2010-04-02 10:20:52',
    ...             lineterm=''):
    ...     print(line)                 # doctest: +NORMALIZE_WHITESPACE
    --- Original        2005-01-26 23:30:50
    +++ Current         2010-04-02 10:20:52
    @@ -1,4 +1,4 @@
    +zero
     one
    -two
    -three
    +tree
     four
    FNT�	{}rj�
--- {}{}{}z
+++ {}{}{}rrvr/�r��z@@ -{} +{} @@{}rnr�>rlrkr�>rmrkr�)�_check_typesrr|r�r�)rr�fromfile�tofile�fromfiledate�
tofiledater@�lineterm�startedr{�fromdate�todater��last�file1_range�file2_rangersrarerbrfr�s                      rr
r
Gsd����R��A�x���z�8�L��G� ��a��*�>�>�q�A����G�6B�v�}�}�\�2��H�2<�V�]�]�:�.�"�F��%�%�h��(�C�C��%�%�f�f�h�?�?��A�h��b�	�t��+�E�!�H�d�1�g�>��+�E�!�H�d�1�g�>���&�&�{�K��J�J�#(��C��R��R��g�~��b��H�D���*�$�%���+�+��b��H�D���*�$�%��+�+��b��H�D���*�$�%�$)�B�s�D	D"�D"c��|dz}||z
}|s|dz}|dkrdj|�Sdj|||zdz
�Sr�r�r�s    r�_format_range_contextr��sS����	�I�
�E�\�F���Q��	�
��{��{�{�9�%�%��>�>�)�Y��%7�!�%;�<�<rc	#��K�t|||||||�tdddd��}d}	td||�j|�D�],}
|	sVd}	|rd	j	|�nd
}|rd	j	|�nd
}dj	|||���dj	|||���|
d
|
d}}
d|z��t|
d|d�}dj	||���t
d�|
D��r'|
D]"\}}}}}|dk7s�|||D]}|||z����$t|
d|d�}dj	||���t
d�|
D��s��|
D]"\}}}}}|dk7s�|||D]}|||z����$��/y�w)ah
    Compare two sequences of lines; generate the delta as a context diff.

    Context diffs are a compact way of showing line changes and a few
    lines of context.  The number of context lines is set by 'n' which
    defaults to three.

    By default, the diff control lines (those with *** or ---) are
    created with a trailing newline.  This is helpful so that inputs
    created from file.readlines() result in diffs that are suitable for
    file.writelines() since both the inputs and outputs have trailing
    newlines.

    For inputs that do not have trailing newlines, set the lineterm
    argument to "" so that the output will be uniformly newline free.

    The context diff format normally has a header for filenames and
    modification times.  Any or all of these may be specified using
    strings for 'fromfile', 'tofile', 'fromfiledate', and 'tofiledate'.
    The modification times are normally expressed in the ISO 8601 format.
    If not specified, the strings default to blanks.

    Example:

    >>> print(''.join(context_diff('one\ntwo\nthree\nfour\n'.splitlines(True),
    ...       'zero\none\ntree\nfour\n'.splitlines(True), 'Original', 'Current')),
    ...       end="")
    *** Original
    --- Current
    ***************
    *** 1,4 ****
      one
    ! two
    ! three
      four
    --- 1,4 ----
    + zero
      one
    ! tree
      four
    r�r�z! r�)rmrlrkrnFNTr�rjz
*** {}{}{}r�rrvz***************r/r�z
*** {} ****{}c3�0K�|]\}}}}}|dv���y�w)>rlrkNr�rrs�_s   rr�zcontext_diff.<locals>.<genexpr>��!����I�5���Q��1�a�s�+�+�5���rmr�r�z
--- {} ----{}c3�0K�|]\}}}}}|dv���y�w)>rmrkNrr�s   rr�zcontext_diff.<locals>.<genexpr>�r�r�rl)r��dictrr|r�r��any)rrr�r�r�r�r@r��prefixr�r{r�r�r�r�r�rsrarer�r�r�rbrfs                        rr	r	�s�����X��A�x���z�8�L�
��d�D��
E�F��G� ��a��*�>�>�q�A����G�6B�v�}�}�\�2��H�2<�V�]�]�:�.�"�F��%�%�h��(�C�C��%�%�f�f�h�?�?��A�h��b�	�t���(�*�*�+�E�!�H�d�1�g�>���$�$�[�(�;�;��I�5�I�I�%*�!��R��Q���(�?� !�"�R���$�S�k�D�0�0�!)�&+�
,�E�!�H�d�1�g�>���$�$�[�(�;�;��I�5�I�I�%*�!��Q��2�r��(�?� !�"�R���$�S�k�D�0�0�!)�&+�1B�s�C4E2�7AE2�E2�E2c�N�|r>t|dt�s+tdt|d�j�d|d�d���|r>t|dt�s+tdt|d�j�d|d�d���|D] }t|t�r�td|����y)Nrz"lines to compare must be str, not � (�)z all arguments must be str, not: )�
isinstance�str�	TypeError�typer�)rr�args�args    rr�r��s���	��A�a�D�#�&���a��d��,�,�a��d�4�5�	5���A�a�D�#�&���a��d��,�,�a��d�4�5�	5����#�s�#��C�I�J�J�rc	
#�
K�d�}	tt|	|��}tt|	|��}|	|�}|	|�}|	|�}|	|�}|	|�}|||||||||�}
|
D]}|jdd����y�w)a�
    Compare `a` and `b`, two sequences of lines represented as bytes rather
    than str. This is a wrapper for `dfunc`, which is typically either
    unified_diff() or context_diff(). Inputs are losslessly converted to
    strings so that `dfunc` only has to worry about strings, and encoded
    back to bytes on return. This is necessary to compare files with
    unknown or inconsistent encoding. All other inputs (except `n`) must be
    bytes rather than str.
    c��	|jdd�S#t$r-}dt|�j�d|�d�}t	|�|�d}~wwxYw)N�ascii�surrogateescapez!all arguments must be bytes, not rr)�decode�AttributeErrorrr�r)r��err�msgs   rrzdiff_bytes.<locals>.decodesK��	*��8�8�G�%6�7�7���	*���G�$�$�a�)�C��C�.�c�)��	*�s��	A
�(A�A
rr
N)rZr[�encode)�dfuncrrr�r�r�r�r@r�r�linesr�s            rrr�s�����*�	
�S���^��A��S���^��A��h��H�
�F�^�F��,�'�L��
�#�J��h��H��!�Q��&�,�
�A�x�P�E����k�k�'�#4�5�5��s�BBc�:�t||�j||�S)aJ
    Compare `a` and `b` (lists of strings); return a `Differ`-style delta.

    Optional keyword parameters `linejunk` and `charjunk` are for filter
    functions, or can be None:

    - linejunk: A function that should accept a single string argument and
      return true iff the string is junk.  The default is None, and is
      recommended; the underlying SequenceMatcher class has an adaptive
      notion of "noise" lines.

    - charjunk: A function that accepts a character (string of length
      1), and returns true iff the character is junk. The default is
      the module-level function IS_CHARACTER_JUNK, which filters out
      whitespace characters (a blank or tab; note: it's a bad idea to
      include newline in this!).

    Tools/scripts/ndiff.py is a command-line front-end to this function.

    Example:

    >>> diff = ndiff('one\ntwo\nthree\n'.splitlines(keepends=True),
    ...              'ore\ntree\nemu\n'.splitlines(keepends=True))
    >>> print(''.join(diff), end="")
    - one
    ?  ^
    + ore
    ?  ^
    - two
    - three
    ?  -
    + tree
    + emu
    )rr�)rrr�r�s    rrrs��F�(�H�%�-�-�a��3�3rc#�����K�ddl}|jd��t||||��ddgf�fd�	���fd���fd�}|�}|�|Ed{���y|dz
}d}	ddg|z}
}	d}|dur'	t|�\}}
}|	|z}||
|f|
|<|	dz
}	|dur�'|	|kDrd	��|}n|	}d}	|r|	|z}|	dz
}	|
|��|dz}|r�|dz
}	|r&t|�\}}
}|r|dz
}n|dz}||
|f��|r�&��7��#t$rYywxYw#t$rYywxYw�w)
a�Returns generator yielding marked up from/to side by side differences.

    Arguments:
    fromlines -- list of text lines to compared to tolines
    tolines -- list of text lines to be compared to fromlines
    context -- number of context lines to display on each side of difference,
               if None, all from/to text lines will be generated.
    linejunk -- passed on to ndiff (see ndiff documentation)
    charjunk -- passed on to ndiff (see ndiff documentation)

    This function returns an iterator which returns a tuple:
    (from line tuple, to line tuple, boolean flag)

    from/to line tuple -- (line num, line text)
        line num -- integer or None (to indicate a context separation)
        line text -- original line text with following markers inserted:
            '\0+' -- marks start of added text
            '\0-' -- marks start of deleted text
            '\0^' -- marks start of changed text
            '\1' -- marks end of added/deleted/changed text

    boolean flag -- None indicates context separation, True indicates
        either "from" or "to" line contains a change, otherwise False.

    This function/iterator was originally developed to generate side by side
    file difference for making HTML pages (see HtmlDiff class for example
    usage).

    Note, this function utilizes the ndiff function to generate the side by
    side difference markup.  Optional ndiff arguments may be passed to this
    function and they in turn will be passed to ndiff.
    rNz
(\++|\-+|\^+)c���||xxdz
cc<|�|||jd�ddfS|dk(rq|jd�|jd�}}g}|fd�}�j||�t|�D]"\}\}	}
|d|	dz|z||	|
zdz||
dz}�$|dd}n#|jd�dd}|sd	}d|z|zdz}|||fS)
aReturns line of text with user's change markup and line formatting.

        lines -- list of lines from the ndiff generator to produce a line of
                 text from.  When producing the line of text to return, the
                 lines used are removed from this list.
        format_key -- '+' return first line in list with "add" markup around
                          the entire line.
                      '-' return first line in list with "delete" markup around
                          the entire line.
                      '?' return first line in list with add/delete/change
                          intraline markup (indices obtained from second line)
                      None return first line in list with no markup
        side -- indice into the num_lines list (0=from,1=to)
        num_lines -- from/to current line number.  This is NOT intended to be a
                     passed parameter.  It is present as a keyword argument to
                     maintain memory of the current line numbers between calls
                     of this function.

        Note, this function is purposefully not defined at the module scope so
        that data it needs from its parent function (within whose context it
        is defined) does not need to be of module scope.
        r/Nrr��?c��|j|jd�d|j�g�|jd�S)Nr/r)r3r{�span)�match_object�sub_infos  r�record_sub_infoz3_mdiff.<locals>._make_line.<locals>.record_sub_info�s=������!3�!3�A�!6�q�!9�,�:K�:K�:M� N�O�#�)�)�!�,�,r��r�)rX�sub�reversed)r�
format_key�side�	num_lines�text�markersrr�key�begin�end�	change_res           �r�
_make_linez_mdiff.<locals>._make_linefs���.	�$��1������d�O�E�I�I�a�L���$4�5�5����!�I�I�a�L�%�)�)�A�,�'�D��H�6>�
-�
�M�M�/�'�2�$,�H�#5���K�U�3��A�e�}�T�)�#�-�d�5��o�=�d�B�4���:�M��$6����8�D��9�9�Q�<���#�D�����*�$�t�+�d�2�D��$���%�%rc3��K�g}d\}}	t|�dkr*|jt�d��t|�dkr�*dj|D�cgc]}|d��	c}�}|j	d�r|}�n�|j	d�r�|dd��|dd	�df����|j	d
�r|d	z}�|dd�ddf����|j	d
�r�|dd�d}}|d	z
d}}�n|j	d�r�|dd��|dd	�df����|j	d�r�|dd��|dd	�df����9|j	d�r|d	z}�|dd�ddf����`|j	d�r|d	z
}d�|dd	�df�����|j	d�rd�|dd	�}}|d	zd}}nT|j	d�r|d	z
}d�|dd	�df�����|j	d�r�|dddd��|dd	�df����|dkr|d	z
}d��|dkr�|dkDr|d	z}d��|dkDr�|j	d�rydf����Bcc}w�w)a�Yields from/to lines of text with a change indication.

        This function is an iterator.  It itself pulls lines from a
        differencing iterator, processes them and yields them.  When it can
        it yields both a "from" and a "to" line, otherwise it will yield one
        or the other.  In addition to yielding the lines of from/to text, a
        boolean flag is yielded to indicate if the text line(s) have
        differences in them.

        Note, this function is purposefully not defined at the module scope so
        that data it needs from its parent function (within whose context it
        is defined) does not need to be of module scope.
        )rrTr��Xrjrz-?+?rr/z--++r�N)z--?+z--+r�z-+?z-?+z+--r�)r�z+-r�F)N�rjr�T)r.NT)r9r3�nextr��
startswith)	r�num_blanks_pending�num_blanks_to_yieldr�r��	from_line�to_liner+�diff_lines_iterators	       ��r�_line_iteratorz_mdiff.<locals>._line_iterator�s��������26�/��/���e�*�q�.����T�"5�s�;�<��e�*�q�.����U�3�U�T��a��U�3�4�A��|�|�C� �'9�#����f�%� ��s�1�-�z�%��A�/F��L�L�����f�%�#�a�'�"� ��s�1�-�t�T�9�9�����3�4�%/�u�S��$;�T�'�	�9K�A�9M�a�$6�#����e�$� ��t�A�.�
�5��Q�0G��M�M�����e�$� ��s�1�-�z�%��Q�/G��M�M�����c�"�"�a�'�"� ��s�1�-�t�T�9�9�����e�$�#�a�'�"��J�u�S��3�T�9�9�����l�+�%)�:�e�C��+B�7�	�9K�A�9M�a�$6�#����c�"�"�a�'�"��J�u�S��3�T�9�9�����c�"� ��q��$�q�1�*�U�4��2J�5�P�P��&��)�#�q�(�#�)�)�&��)�&��)�#�q�(�#�)�)�&��)��|�|�C� �����,�,�M��4�s%�AI�I�I�F?I�I�3 Ic3��K���}gg}}	t|�dk(st|�dk(rX	t|�\}}}|�|j||f�|�|j||f�t|�dk(r�It|�dk(r�X|j	d�\}}|j	d�\}}|||xs|f����#t$rYywxYw�w)atYields from/to lines of text with a change indication.

        This function is an iterator.  It itself pulls lines from the line
        iterator.  Its difference from that iterator is that this function
        always yields a pair of from/to text lines (with the change
        indication).  If necessary it will collect single from/to lines
        until it has a matching pair from/to pair to yield.

        Note, this function is purposefully not defined at the module scope so
        that data it needs from its parent function (within whose context it
        is defined) does not need to be of module scope.
        rN)r9r/�
StopIterationr3rX)	�
line_iterator�	fromlines�tolinesr3r4�
found_diff�fromDiff�to_diffr6s	        �r�_line_pair_iteratorz#_mdiff.<locals>._line_pair_iterator�s������'�(�
��R�'�	���y�>�1�$��G��a���59�-�5H�2�I�w�
��(��$�$�i�
�%;�<��&��N�N�G�J�#7�8��y�>�1�$��G��a��#,�-�-��"2��I�x�&�{�{�1�~��G�W��W�X�%8��9�9���
%����s3�)C�B8�8C�5C�4C�8	C�C�C�Cr/F)NNN)�re�compilerr/r8)r:r;�contextr�r�r@r?�line_pair_iterator�lines_to_write�index�contextLinesr<r3r4r;r6r+r*r5s               @@@@r�_mdiffrG<s������D���
�
�+�,�I� �	�'�(�8�D��78��e�6&�pV-�p:�B-�.����%�%�%�	�1������#$�d�V�W�%5�<�E��J���%��59�:L�5M�2�I�w�
��G�O��#,�g�z�"B��Q����
����%��w��&�&�!(��!&���� ��G�O����
��"�1�o�%��!�#��	!�%�Q�Y�N�
�$�59�:L�5M�2�I�w�
�!�)0����&�!�+��#�W�j�8�8�%�=�
	&��%�����:!�
��
�sf�AD
�
C*�D
�*C,�9D
�*D
�;D
�'C;�)D
�,	C8�5D
�7C8�8D
�;	D�D
�D�D
an
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>

<head>
    <meta http-equiv="Content-Type"
          content="text/html; charset=%(charset)s" />
    <title></title>
    <style type="text/css">%(styles)s
    </style>
</head>

<body>
    %(table)s%(legend)s
</body>

</html>a�
        table.diff {font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace; border:medium}
        .diff_header {background-color:#e0e0e0}
        td.diff_header {text-align:right}
        .diff_next {background-color:#c0c0c0}
        .diff_add {background-color:#aaffaa}
        .diff_chg {background-color:#ffff77}
        .diff_sub {background-color:#ffaaaa}aZ
    <table class="diff" id="difflib_chg_%(prefix)s_top"
           cellspacing="0" cellpadding="0" rules="groups" >
        <colgroup></colgroup> <colgroup></colgroup> <colgroup></colgroup>
        <colgroup></colgroup> <colgroup></colgroup> <colgroup></colgroup>
        %(header_row)s
        <tbody>
%(data_rows)s        </tbody>
    </table>a�
    <table class="diff" summary="Legends">
        <tr> <th colspan="2"> Legends </th> </tr>
        <tr> <td> <table border="" summary="Colors">
                      <tr><th> Colors </th> </tr>
                      <tr><td class="diff_add">&nbsp;Added&nbsp;</td></tr>
                      <tr><td class="diff_chg">Changed</td> </tr>
                      <tr><td class="diff_sub">Deleted</td> </tr>
                  </table></td>
             <td> <table border="" summary="Links">
                      <tr><th colspan="2"> Links </th> </tr>
                      <tr><td>(f)irst change</td> </tr>
                      <tr><td>(n)ext change</td> </tr>
                      <tr><td>(t)op</td> </tr>
                  </table></td> </tr>
    </table>c�|�eZdZdZeZeZeZeZdZddde	fd�Z
		ddd�d�Zd	�Zd
�Z
d�Zd�Zd
�Zd�Zd�Z		dd�Zy)ra{For producing HTML side by side comparison with change highlights.

    This class can be used to create an HTML table (or a complete HTML file
    containing the table) showing a side by side, line by line comparison
    of text with inter-line and intra-line change highlights.  The table can
    be generated in either full or contextual difference mode.

    The following methods are provided for HTML generation:

    make_table -- generates HTML for a single side by side table
    make_file -- generates complete HTML file with a single side by side table

    See tools/scripts/diff.py for an example usage of this class.
    r�Nc�<�||_||_||_||_y)a�HtmlDiff instance initializer

        Arguments:
        tabsize -- tab stop spacing, defaults to 8.
        wrapcolumn -- column number where lines are broken and wrapped,
            defaults to None where lines are not wrapped.
        linejunk,charjunk -- keyword arguments passed into ndiff() (used by
            HtmlDiff() to generate the side by side HTML differences).  See
            ndiff() documentation for argument default values and descriptions.
        N)�_tabsize�_wrapcolumn�	_linejunk�	_charjunk)r!�tabsize�
wrapcolumnr�r�s     rr"zHtmlDiff.__init__�s!�� ��
�%���!���!��rzutf-8)�charsetc
���|jt|j|j|j	||||||��|��zj|d�j
|�S)aReturns HTML file of side by side comparison with change highlights

        Arguments:
        fromlines -- list of "from" lines
        tolines -- list of "to" lines
        fromdesc -- "from" file column header string
        todesc -- "to" file column header string
        context -- set to True for contextual differences (defaults to False
            which shows full differences).
        numlines -- number of context lines.  When context is set True,
            controls number of lines displayed before and after the change.
            When context is False, controls the number of lines to place
            the "next" link anchors before the next change (so click of
            "next" link jumps to just before the change).
        charset -- charset of the HTML document
        )rB�numlines)�styles�legend�tablerQ�xmlcharrefreplace)�_file_templater��_styles�_legend�
make_tablerr)r!r:r;�fromdesc�todescrBrSrQs        r�	make_filezHtmlDiff.make_file�sf��&�#�#�d��<�<��<�<��/�/�)�W�h��*1�H�"�F��'
�
��6�'�.�/���w��
	@rc�~���fd�}|D�cgc]
}||���}}|D�cgc]
}||���}}||fScc}wcc}w)aReturns from/to line lists with tabs expanded and newlines removed.

        Instead of tab characters being replaced by the number of spaces
        needed to fill in to the next tab stop, this function will fill
        the space with tab characters.  This is done so that the difference
        algorithms can identify changes in a file when tabs are replaced by
        spaces and vice versa.  At the end of the HTML generation, the tab
        characters will be replaced with a nonbreakable space.
        c����|jdd�}|j�j�}|jdd�}|jdd�jd�S)Nr�r�	r�)rk�
expandtabsrKr�)r�r!s �r�expand_tabsz2HtmlDiff._tab_newline_replace.<locals>.expand_tabs�sS����<�<��D�)�D��?�?�4�=�=�1�D��<�<��D�)�D��<�<��S�)�0�0��6�6rr)r!r:r;rcr�s`    r�_tab_newline_replacezHtmlDiff._tab_newline_replace�sO���	7�4=�=�9�4�[��&�9�	�=�18�9���;�t�$���9��� � ��>��9s�5�:c���|s|j||f�yt|�}|j}||ks||jd�dzz
|kr|j||f�yd}d}d}||krB||kr=||dk(r|dz
}||}|dz
}n||dk(r|dz
}d}n
|dz
}|dz
}||kr||kr�=|d|}	||d}
|r
|	dz}	d|z|
z}
|j||	f�|j	|d|
�y)	a�Builds list of text lines by splitting text lines at wrap point

        This function will determine if the input text line needs to be
        wrapped (split) into separate lines.  If so, the first wrap point
        will be determined and the first line appended to the output
        text line list.  This function is used recursively to handle
        the second part of the split line to further split it.
        Nrr�rrjr/r�>)r3r9rL�count�_split_line)r!�	data_list�line_numr%rrrwr;r@�mark�line1�line2s           rrhzHtmlDiff._split_line�sC������h�t�_�-���4�y�������C�K�d�T�Z�Z��%5�a�%7�8�S�@����h�t�_�-��
��
�����#�g�!�d�(��A�w�$���Q����A�w���Q����a��D���Q������Q����Q����#�g�!�d�(��R�a����Q�R���
��D�L�E��4�K�%�'�E�	���(�5�)�*�	
����3�u�-rc#�K�|D]�\}}}|�|||f���||c\}}\}}gg}
}	|j|	||�|j|
||�|	s|
s�K|	r|	jd�}nd}|
r|
jd�}nd}|||f��|	r�6|
r�9��y�w)z5Returns iterator that splits (wraps) mdiff text linesNr)rjr�)rhrX)r!�diffs�fromdata�todata�flag�fromline�fromtext�toline�totext�fromlist�tolists           r�
_line_wrapperzHtmlDiff._line_wrappers�����%*� �H�V�D��|��v�d�*�*��2:�6�/��X�h����!��V�H����X�h�x�8����V�F�6�2��f��'�|�|�A��H�'�H��#�Z�Z��]�F�%�F��v�d�*�*��f�%*�s�A
B�5B�B�	Bc�@�ggg}}}|D]^\}}}	|j|jd|g|����|j|jd|g|����|j|��`|||fS#t$r%|jd�|jd�Y�EwxYw)z�Collects mdiff output into separate lists

        Before storing the mdiff from/to data into a list, it is converted
        into a single line of text with HTML markup.
        rr/N)r3�_format_liner)r!rorwrx�flaglistrprqrrs        r�_collect_lineszHtmlDiff._collect_lines.s���$&�b�����$)� �H�V�D�
$���� 1�� 1� 1�!�D� C�(� C�D��
�
�/�d�/�/��$�?��?�@�

�O�O�D�!�%*���x�'�'���
$�����%��
�
�d�#�
$�s�AA/�/+B�Bc��	d|z}d|j|�|�d�}|jdd�jdd�jd	d
�}|jdd�j�}d
|�d|�d|�d�S#t$rd}Y�kwxYw)aReturns HTML markup of "from" / "to" text lines

        side -- 0 or 1 indicating "from" or "to" text
        flag -- indicates if difference on line
        linenum -- line number (used for line number column)
        text -- line text to be marked up
        z%dz id="�"rj�&z&amp;rfz&gt;�<z&lt;r��&nbsp;z<td class="diff_header"z</td><td nowrap="nowrap">z</td>)�_prefixrrkr�)r!r#rr�linenumr%�ids      rr{zHtmlDiff._format_lineCs���	��W�n�G�!%���d�!3�G�<�B�
�\�\�#�g�
&�
.�
.�s�6�
:�
B�
B�3�v�
N���|�|�C��)�0�0�2���W�T�#�	#���	��B�	�s�A:�:B�Bc��dtjz}dtjz}txjdz
c_||g|_y)zCreate unique anchor prefixeszfrom%d_zto%d_r/N)r�_default_prefixr�)r!�
fromprefix�toprefixs   r�_make_prefixzHtmlDiff._make_prefixZsA��
��!9�!9�9�
��X�5�5�5��� � �A�%� �"�8�,��rc�f�|jd}dgt|�z}dgt|�z}d\}	}
d}t|�D]:\}}
|
r1|
r�d}
|}td||z
g�}d||	fz||<|	dz
}	d||	fz||<�9d}
�<|sdg}dg}dg}d}|rd	g}|}nd
gx}}|dsd|z|d<d|z||<|||||fS)
zMakes list of "next" linksr/rj)rFrTz id="difflib_chg_%s_%d"z"<a href="#difflib_chg_%s_%d">n</a>Fz2<td></td><td>&nbsp;No Differences Found&nbsp;</td>z(<td></td><td>&nbsp;Empty File&nbsp;</td>z!<a href="#difflib_chg_%s_0">f</a>z#<a href="#difflib_chg_%s_top">t</a>)r�r9r1rw)r!rwrxr|rBrSr��next_id�	next_href�num_chg�	in_changer�r;rrs              r�_convert_flagszHtmlDiff._convert_flagses'���<�<��?���$�s�8�}�$���D��X��&�	�%��������)�F�A�d�� � $�I��D��Q�q��z�N�+�A�!:�h�w�=O�!O�G�A�J��q�L�G�&J�!�'�N+�'+�I�d�O�"�	�!*�$��w�H��d�G���I��D��P�Q��!��%O�$P�P��6���{�>��I�I�a�L�?�8�L�	�$����x�	�'�9�9rc
�D�|j�|j||�\}}|r|}nd}t||||j|j��}|j
r|j
|�}|j|�\}	}
}|j|	|
|||�\}	}
}}}
g}d}tt|��D]G}||�|dkDs�|jd�� |j||
||||	||||
|fz��I|s|rdd�d|z�d�d|z�d	�}nd
}|jtd
j|�||jd��z}|j!d
d�j!dd�j!dd�j!dd�j!dd�S)a�Returns HTML table of side by side comparison with change highlights

        Arguments:
        fromlines -- list of "from" lines
        tolines -- list of "to" lines
        fromdesc -- "from" file column header string
        todesc -- "to" file column header string
        context -- set to True for contextual differences (defaults to False
            which shows full differences).
        numlines -- number of context lines.  When context is set True,
            controls number of lines displayed before and after the change.
            When context is False, controls the number of lines to place
            the "next" link anchors before the next change (so click of
            "next" link jumps to just before the change).
        Nr�zV            <tr><td class="diff_next"%s>%s</td>%s<td class="diff_next">%s</td>%s</tr>
rz)        </tbody>        
        <tbody>
z<thead><tr>z!<th class="diff_next"><br /></th>z+<th colspan="2" class="diff_header">%s</th>z
</tr></thead>rjr/)�	data_rows�
header_rowrz+z<span class="diff_add">z-z<span class="diff_sub">z^z<span class="diff_chg">rz</span>rar�)r�rdrGrMrNrLryr}r�rFr9r3�_table_templater�r�r�rk)r!r:r;r\r]rBrS�
context_linesrorwrxr|r�r�r��fmtr;r�rVs                   rr[zHtmlDiff.make_table�s���(	
����!�5�5�i��H��	�'��$�M� �M��y������#�~�~�/������&�&�u�-�E�$(�#6�#6�u�#=� ����6:�5H�5H��V�H�W�X�67�2�����7�
��7���s�8�}�%�A���{�"��q�5��H�H�J�K����#����I�a�L��!��+4�Q�<��q�	�!C�C�D�&��v��3�=��H�3�=��F�	H�J��J��$�$�t��g�g�a�j�!��<�<��?�($�$��
�}�}�U�#<�=��W�U�#<�=��W�U�#<�=��W�T�)�,��W�T�(�+�		,r)rjrjF�)r�r�r�r�rXrYr�rZr�rr"r^rdrhryr}r{r�r�r[rrrrr�s��
�$�N��G�%�O��G��O��4��+�"�"AC�*+�@�8?�@�6!�.5.�n+�8(�*#�.	-�-:�^IN��K,rrc#�K�	ddd�t|�}d|f}|D]}|dd|vs�|dd���y#t$rtd|z�d�wxYw�w)a0
    Generate one of the two sequences that generated a delta.

    Given a `delta` produced by `Differ.compare()` or `ndiff()`, extract
    lines originating from file 1 or 2 (parameter `which`), stripping off line
    prefixes.

    Examples:

    >>> diff = ndiff('one\ntwo\nthree\n'.splitlines(keepends=True),
    ...              'ore\ntree\nemu\n'.splitlines(keepends=True))
    >>> diff = list(diff)
    >>> print(''.join(restore(diff, 1)), end="")
    one
    two
    three
    >>> print(''.join(restore(diff, 2)), end="")
    ore
    tree
    emu
    r�r�)r/r�z)unknown delta choice (must be 1 or 2): %rNr�r�)�int�KeyErrorr�)�delta�whichrs�prefixesr�s     rrr�sw����,.��4� ��U��,���c�{�H������8�x���q�r�(�N���	�.��D�"�#�$�)-�	.�.�s�A�0�A�
A�A	�	Ac�4�ddl}ddl}|j|�S)Nr)�doctest�difflib�testmod)r�r�s  r�_testr�s����?�?�7�#�#r�__main__)r�g333333�?)z 	)rjrjrjrjr�r�)rrrrr��
)&r��__all__�heapqrr��collectionsr�_namedtuple�typesrr
rrrr�rr@rA�matchrrr�r
r�r	r�rrrGrXrYr�rZ�objectrrr�r�rrr�<module>r�s���8>��(�1���G�Z�(���
k	2�k	2�\.&�b�l!�l!�~	
�%�2�:�:�&6�7�=�=�!� �.	-�=?�.2�B%�R	=�,.�?C�J1�XK�"25�?D�6�<�(9�#4�J(,�d�%�K�\��(0������"],�v�],�~
��@$��z��	�G�r
Name
Size
Permissions
Options
__future__.cpython-312.opt-1.pyc
4.609 KB
-rw-r--r--
__future__.cpython-312.opt-2.pyc
2.614 KB
-rw-r--r--
__future__.cpython-312.pyc
4.609 KB
-rw-r--r--
__hello__.cpython-312.opt-1.pyc
0.865 KB
-rw-r--r--
__hello__.cpython-312.opt-2.pyc
0.822 KB
-rw-r--r--
__hello__.cpython-312.pyc
0.865 KB
-rw-r--r--
_aix_support.cpython-312.opt-1.pyc
4.654 KB
-rw-r--r--
_aix_support.cpython-312.opt-2.pyc
3.311 KB
-rw-r--r--
_aix_support.cpython-312.pyc
4.654 KB
-rw-r--r--
_collections_abc.cpython-312.opt-1.pyc
44.764 KB
-rw-r--r--
_collections_abc.cpython-312.opt-2.pyc
38.863 KB
-rw-r--r--
_collections_abc.cpython-312.pyc
44.764 KB
-rw-r--r--
_compat_pickle.cpython-312.opt-1.pyc
6.916 KB
-rw-r--r--
_compat_pickle.cpython-312.opt-2.pyc
6.916 KB
-rw-r--r--
_compat_pickle.cpython-312.pyc
7.046 KB
-rw-r--r--
_compression.cpython-312.opt-1.pyc
7.318 KB
-rw-r--r--
_compression.cpython-312.opt-2.pyc
7.126 KB
-rw-r--r--
_compression.cpython-312.pyc
7.318 KB
-rw-r--r--
_markupbase.cpython-312.opt-1.pyc
11.799 KB
-rw-r--r--
_markupbase.cpython-312.opt-2.pyc
11.442 KB
-rw-r--r--
_markupbase.cpython-312.pyc
12.007 KB
-rw-r--r--
_osx_support.cpython-312.opt-1.pyc
17.278 KB
-rw-r--r--
_osx_support.cpython-312.opt-2.pyc
14.755 KB
-rw-r--r--
_osx_support.cpython-312.pyc
17.278 KB
-rw-r--r--
_py_abc.cpython-312.opt-1.pyc
6.829 KB
-rw-r--r--
_py_abc.cpython-312.opt-2.pyc
5.685 KB
-rw-r--r--
_py_abc.cpython-312.pyc
6.886 KB
-rw-r--r--
_pydatetime.cpython-312.opt-1.pyc
89.534 KB
-rw-r--r--
_pydatetime.cpython-312.opt-2.pyc
81.928 KB
-rw-r--r--
_pydatetime.cpython-312.pyc
92.054 KB
-rw-r--r--
_pydecimal.cpython-312.opt-1.pyc
220.063 KB
-rw-r--r--
_pydecimal.cpython-312.opt-2.pyc
144.304 KB
-rw-r--r--
_pydecimal.cpython-312.pyc
220.242 KB
-rw-r--r--
_pyio.cpython-312.opt-1.pyc
107.487 KB
-rw-r--r--
_pyio.cpython-312.opt-2.pyc
85.687 KB
-rw-r--r--
_pyio.cpython-312.pyc
107.536 KB
-rw-r--r--
_pylong.cpython-312.opt-1.pyc
10.799 KB
-rw-r--r--
_pylong.cpython-312.opt-2.pyc
8.294 KB
-rw-r--r--
_pylong.cpython-312.pyc
10.799 KB
-rw-r--r--
_sitebuiltins.cpython-312.opt-1.pyc
4.646 KB
-rw-r--r--
_sitebuiltins.cpython-312.opt-2.pyc
4.146 KB
-rw-r--r--
_sitebuiltins.cpython-312.pyc
4.646 KB
-rw-r--r--
_strptime.cpython-312.opt-1.pyc
26.842 KB
-rw-r--r--
_strptime.cpython-312.opt-2.pyc
22.751 KB
-rw-r--r--
_strptime.cpython-312.pyc
26.842 KB
-rw-r--r--
_sysconfigdata__linux_x86_64-linux-gnu.cpython-312.opt-1.pyc
74.491 KB
-rw-r--r--
_sysconfigdata__linux_x86_64-linux-gnu.cpython-312.opt-2.pyc
74.491 KB
-rw-r--r--
_sysconfigdata__linux_x86_64-linux-gnu.cpython-312.pyc
74.491 KB
-rw-r--r--
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-312.opt-1.pyc
74.444 KB
-rw-r--r--
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-312.opt-2.pyc
74.444 KB
-rw-r--r--
_sysconfigdata_d_linux_x86_64-linux-gnu.cpython-312.pyc
74.444 KB
-rw-r--r--
_threading_local.cpython-312.opt-1.pyc
8.073 KB
-rw-r--r--
_threading_local.cpython-312.opt-2.pyc
4.851 KB
-rw-r--r--
_threading_local.cpython-312.pyc
8.073 KB
-rw-r--r--
_weakrefset.cpython-312.opt-1.pyc
11.478 KB
-rw-r--r--
_weakrefset.cpython-312.opt-2.pyc
11.478 KB
-rw-r--r--
_weakrefset.cpython-312.pyc
11.478 KB
-rw-r--r--
abc.cpython-312.opt-1.pyc
7.867 KB
-rw-r--r--
abc.cpython-312.opt-2.pyc
4.765 KB
-rw-r--r--
abc.cpython-312.pyc
7.867 KB
-rw-r--r--
aifc.cpython-312.opt-1.pyc
41.804 KB
-rw-r--r--
aifc.cpython-312.opt-2.pyc
36.725 KB
-rw-r--r--
aifc.cpython-312.pyc
41.804 KB
-rw-r--r--
antigravity.cpython-312.opt-1.pyc
1.001 KB
-rw-r--r--
antigravity.cpython-312.opt-2.pyc
0.867 KB
-rw-r--r--
antigravity.cpython-312.pyc
1.001 KB
-rw-r--r--
argparse.cpython-312.opt-1.pyc
98.344 KB
-rw-r--r--
argparse.cpython-312.opt-2.pyc
88.931 KB
-rw-r--r--
argparse.cpython-312.pyc
98.702 KB
-rw-r--r--
ast.cpython-312.opt-1.pyc
97.23 KB
-rw-r--r--
ast.cpython-312.opt-2.pyc
89.049 KB
-rw-r--r--
ast.cpython-312.pyc
97.412 KB
-rw-r--r--
base64.cpython-312.opt-1.pyc
23.548 KB
-rw-r--r--
base64.cpython-312.opt-2.pyc
19.035 KB
-rw-r--r--
base64.cpython-312.pyc
23.841 KB
-rw-r--r--
bdb.cpython-312.opt-1.pyc
37.75 KB
-rw-r--r--
bdb.cpython-312.opt-2.pyc
28.643 KB
-rw-r--r--
bdb.cpython-312.pyc
37.75 KB
-rw-r--r--
bisect.cpython-312.opt-1.pyc
3.571 KB
-rw-r--r--
bisect.cpython-312.opt-2.pyc
2.025 KB
-rw-r--r--
bisect.cpython-312.pyc
3.571 KB
-rw-r--r--
bz2.cpython-312.opt-1.pyc
14.794 KB
-rw-r--r--
bz2.cpython-312.opt-2.pyc
10.037 KB
-rw-r--r--
bz2.cpython-312.pyc
14.794 KB
-rw-r--r--
cProfile.cpython-312.opt-1.pyc
8.377 KB
-rw-r--r--
cProfile.cpython-312.opt-2.pyc
7.935 KB
-rw-r--r--
cProfile.cpython-312.pyc
8.377 KB
-rw-r--r--
calendar.cpython-312.opt-1.pyc
38.982 KB
-rw-r--r--
calendar.cpython-312.opt-2.pyc
34.848 KB
-rw-r--r--
calendar.cpython-312.pyc
38.982 KB
-rw-r--r--
cgi.cpython-312.opt-1.pyc
39.298 KB
-rw-r--r--
cgi.cpython-312.opt-2.pyc
30.991 KB
-rw-r--r--
cgi.cpython-312.pyc
39.298 KB
-rw-r--r--
cgitb.cpython-312.opt-1.pyc
16.888 KB
-rw-r--r--
cgitb.cpython-312.opt-2.pyc
15.366 KB
-rw-r--r--
cgitb.cpython-312.pyc
16.888 KB
-rw-r--r--
chunk.cpython-312.opt-1.pyc
7.154 KB
-rw-r--r--
chunk.cpython-312.opt-2.pyc
5.106 KB
-rw-r--r--
chunk.cpython-312.pyc
7.154 KB
-rw-r--r--
cmd.cpython-312.opt-1.pyc
18.167 KB
-rw-r--r--
cmd.cpython-312.opt-2.pyc
12.968 KB
-rw-r--r--
cmd.cpython-312.pyc
18.167 KB
-rw-r--r--
code.cpython-312.opt-1.pyc
13.363 KB
-rw-r--r--
code.cpython-312.opt-2.pyc
8.314 KB
-rw-r--r--
code.cpython-312.pyc
13.363 KB
-rw-r--r--
codecs.cpython-312.opt-1.pyc
41.288 KB
-rw-r--r--
codecs.cpython-312.opt-2.pyc
26.323 KB
-rw-r--r--
codecs.cpython-312.pyc
41.288 KB
-rw-r--r--
codeop.cpython-312.opt-1.pyc
6.754 KB
-rw-r--r--
codeop.cpython-312.opt-2.pyc
3.84 KB
-rw-r--r--
codeop.cpython-312.pyc
6.754 KB
-rw-r--r--
colorsys.cpython-312.opt-1.pyc
4.549 KB
-rw-r--r--
colorsys.cpython-312.opt-2.pyc
3.961 KB
-rw-r--r--
colorsys.cpython-312.pyc
4.549 KB
-rw-r--r--
compileall.cpython-312.opt-1.pyc
19.886 KB
-rw-r--r--
compileall.cpython-312.opt-2.pyc
16.732 KB
-rw-r--r--
compileall.cpython-312.pyc
19.886 KB
-rw-r--r--
configparser.cpython-312.opt-1.pyc
62.01 KB
-rw-r--r--
configparser.cpython-312.opt-2.pyc
47.633 KB
-rw-r--r--
configparser.cpython-312.pyc
62.01 KB
-rw-r--r--
contextlib.cpython-312.opt-1.pyc
29.64 KB
-rw-r--r--
contextlib.cpython-312.opt-2.pyc
23.729 KB
-rw-r--r--
contextlib.cpython-312.pyc
29.654 KB
-rw-r--r--
contextvars.cpython-312.opt-1.pyc
0.271 KB
-rw-r--r--
contextvars.cpython-312.opt-2.pyc
0.271 KB
-rw-r--r--
contextvars.cpython-312.pyc
0.271 KB
-rw-r--r--
copy.cpython-312.opt-1.pyc
9.544 KB
-rw-r--r--
copy.cpython-312.opt-2.pyc
7.319 KB
-rw-r--r--
copy.cpython-312.pyc
9.544 KB
-rw-r--r--
copyreg.cpython-312.opt-1.pyc
7.211 KB
-rw-r--r--
copyreg.cpython-312.opt-2.pyc
6.456 KB
-rw-r--r--
copyreg.cpython-312.pyc
7.241 KB
-rw-r--r--
crypt.cpython-312.opt-1.pyc
5.249 KB
-rw-r--r--
crypt.cpython-312.opt-2.pyc
4.626 KB
-rw-r--r--
crypt.cpython-312.pyc
5.249 KB
-rw-r--r--
csv.cpython-312.opt-1.pyc
17.336 KB
-rw-r--r--
csv.cpython-312.opt-2.pyc
15.39 KB
-rw-r--r--
csv.cpython-312.pyc
17.336 KB
-rw-r--r--
dataclasses.cpython-312.opt-1.pyc
43.798 KB
-rw-r--r--
dataclasses.cpython-312.opt-2.pyc
40.021 KB
-rw-r--r--
dataclasses.cpython-312.pyc
43.854 KB
-rw-r--r--
datetime.cpython-312.opt-1.pyc
0.415 KB
-rw-r--r--
datetime.cpython-312.opt-2.pyc
0.415 KB
-rw-r--r--
datetime.cpython-312.pyc
0.415 KB
-rw-r--r--
decimal.cpython-312.opt-1.pyc
2.878 KB
-rw-r--r--
decimal.cpython-312.opt-2.pyc
0.376 KB
-rw-r--r--
decimal.cpython-312.pyc
2.878 KB
-rw-r--r--
difflib.cpython-312.opt-1.pyc
73.586 KB
-rw-r--r--
difflib.cpython-312.opt-2.pyc
41.119 KB
-rw-r--r--
difflib.cpython-312.pyc
73.628 KB
-rw-r--r--
dis.cpython-312.opt-1.pyc
33.611 KB
-rw-r--r--
dis.cpython-312.opt-2.pyc
29.374 KB
-rw-r--r--
dis.cpython-312.pyc
33.649 KB
-rw-r--r--
doctest.cpython-312.opt-1.pyc
102.9 KB
-rw-r--r--
doctest.cpython-312.opt-2.pyc
68.726 KB
-rw-r--r--
doctest.cpython-312.pyc
103.206 KB
-rw-r--r--
enum.cpython-312.opt-1.pyc
78.477 KB
-rw-r--r--
enum.cpython-312.opt-2.pyc
69.607 KB
-rw-r--r--
enum.cpython-312.pyc
78.477 KB
-rw-r--r--
filecmp.cpython-312.opt-1.pyc
14.337 KB
-rw-r--r--
filecmp.cpython-312.opt-2.pyc
11.791 KB
-rw-r--r--
filecmp.cpython-312.pyc
14.337 KB
-rw-r--r--
fileinput.cpython-312.opt-1.pyc
19.809 KB
-rw-r--r--
fileinput.cpython-312.opt-2.pyc
14.494 KB
-rw-r--r--
fileinput.cpython-312.pyc
19.809 KB
-rw-r--r--
fnmatch.cpython-312.opt-1.pyc
6.225 KB
-rw-r--r--
fnmatch.cpython-312.opt-2.pyc
5.074 KB
-rw-r--r--
fnmatch.cpython-312.pyc
6.344 KB
-rw-r--r--
fractions.cpython-312.opt-1.pyc
35.909 KB
-rw-r--r--
fractions.cpython-312.opt-2.pyc
27.582 KB
-rw-r--r--
fractions.cpython-312.pyc
35.909 KB
-rw-r--r--
ftplib.cpython-312.opt-1.pyc
41.591 KB
-rw-r--r--
ftplib.cpython-312.opt-2.pyc
31.694 KB
-rw-r--r--
ftplib.cpython-312.pyc
41.591 KB
-rw-r--r--
functools.cpython-312.opt-1.pyc
39.412 KB
-rw-r--r--
functools.cpython-312.opt-2.pyc
33.007 KB
-rw-r--r--
functools.cpython-312.pyc
39.412 KB
-rw-r--r--
genericpath.cpython-312.opt-1.pyc
6.666 KB
-rw-r--r--
genericpath.cpython-312.opt-2.pyc
5.594 KB
-rw-r--r--
genericpath.cpython-312.pyc
6.666 KB
-rw-r--r--
getopt.cpython-312.opt-1.pyc
8.129 KB
-rw-r--r--
getopt.cpython-312.opt-2.pyc
5.652 KB
-rw-r--r--
getopt.cpython-312.pyc
8.179 KB
-rw-r--r--
getpass.cpython-312.opt-1.pyc
6.687 KB
-rw-r--r--
getpass.cpython-312.opt-2.pyc
5.551 KB
-rw-r--r--
getpass.cpython-312.pyc
6.687 KB
-rw-r--r--
gettext.cpython-312.opt-1.pyc
21.288 KB
-rw-r--r--
gettext.cpython-312.opt-2.pyc
20.635 KB
-rw-r--r--
gettext.cpython-312.pyc
21.288 KB
-rw-r--r--
glob.cpython-312.opt-1.pyc
9.527 KB
-rw-r--r--
glob.cpython-312.opt-2.pyc
8.611 KB
-rw-r--r--
glob.cpython-312.pyc
9.587 KB
-rw-r--r--
graphlib.cpython-312.opt-1.pyc
10.001 KB
-rw-r--r--
graphlib.cpython-312.opt-2.pyc
6.704 KB
-rw-r--r--
graphlib.cpython-312.pyc
10.068 KB
-rw-r--r--
gzip.cpython-312.opt-1.pyc
31.61 KB
-rw-r--r--
gzip.cpython-312.opt-2.pyc
27.367 KB
-rw-r--r--
gzip.cpython-312.pyc
31.61 KB
-rw-r--r--
hashlib.cpython-312.opt-1.pyc
7.906 KB
-rw-r--r--
hashlib.cpython-312.opt-2.pyc
7.171 KB
-rw-r--r--
hashlib.cpython-312.pyc
7.906 KB
-rw-r--r--
heapq.cpython-312.opt-1.pyc
17.533 KB
-rw-r--r--
heapq.cpython-312.opt-2.pyc
14.52 KB
-rw-r--r--
heapq.cpython-312.pyc
17.533 KB
-rw-r--r--
hmac.cpython-312.opt-1.pyc
10.456 KB
-rw-r--r--
hmac.cpython-312.opt-2.pyc
8.057 KB
-rw-r--r--
hmac.cpython-312.pyc
10.456 KB
-rw-r--r--
imaplib.cpython-312.opt-1.pyc
57.638 KB
-rw-r--r--
imaplib.cpython-312.opt-2.pyc
45.988 KB
-rw-r--r--
imaplib.cpython-312.pyc
61.785 KB
-rw-r--r--
imghdr.cpython-312.opt-1.pyc
6.787 KB
-rw-r--r--
imghdr.cpython-312.opt-2.pyc
6.229 KB
-rw-r--r--
imghdr.cpython-312.pyc
6.787 KB
-rw-r--r--
inspect.cpython-312.opt-1.pyc
130.913 KB
-rw-r--r--
inspect.cpython-312.opt-2.pyc
106.347 KB
-rw-r--r--
inspect.cpython-312.pyc
131.229 KB
-rw-r--r--
io.cpython-312.opt-1.pyc
4.048 KB
-rw-r--r--
io.cpython-312.opt-2.pyc
2.598 KB
-rw-r--r--
io.cpython-312.pyc
4.048 KB
-rw-r--r--
ipaddress.cpython-312.opt-1.pyc
91.594 KB
-rw-r--r--
ipaddress.cpython-312.opt-2.pyc
66.808 KB
-rw-r--r--
ipaddress.cpython-312.pyc
91.594 KB
-rw-r--r--
keyword.cpython-312.opt-1.pyc
1.032 KB
-rw-r--r--
keyword.cpython-312.opt-2.pyc
0.638 KB
-rw-r--r--
keyword.cpython-312.pyc
1.032 KB
-rw-r--r--
linecache.cpython-312.opt-1.pyc
6.411 KB
-rw-r--r--
linecache.cpython-312.opt-2.pyc
5.255 KB
-rw-r--r--
linecache.cpython-312.pyc
6.411 KB
-rw-r--r--
locale.cpython-312.opt-1.pyc
58.109 KB
-rw-r--r--
locale.cpython-312.opt-2.pyc
53.811 KB
-rw-r--r--
locale.cpython-312.pyc
58.109 KB
-rw-r--r--
lzma.cpython-312.opt-1.pyc
15.499 KB
-rw-r--r--
lzma.cpython-312.opt-2.pyc
9.558 KB
-rw-r--r--
lzma.cpython-312.pyc
15.499 KB
-rw-r--r--
mailbox.cpython-312.opt-1.pyc
108.681 KB
-rw-r--r--
mailbox.cpython-312.opt-2.pyc
103.367 KB
-rw-r--r--
mailbox.cpython-312.pyc
108.784 KB
-rw-r--r--
mailcap.cpython-312.opt-1.pyc
10.849 KB
-rw-r--r--
mailcap.cpython-312.opt-2.pyc
9.36 KB
-rw-r--r--
mailcap.cpython-312.pyc
10.849 KB
-rw-r--r--
mimetypes.cpython-312.opt-1.pyc
23.889 KB
-rw-r--r--
mimetypes.cpython-312.opt-2.pyc
18.102 KB
-rw-r--r--
mimetypes.cpython-312.pyc
23.889 KB
-rw-r--r--
modulefinder.cpython-312.opt-1.pyc
27.079 KB
-rw-r--r--
modulefinder.cpython-312.opt-2.pyc
26.221 KB
-rw-r--r--
modulefinder.cpython-312.pyc
27.181 KB
-rw-r--r--
netrc.cpython-312.opt-1.pyc
8.663 KB
-rw-r--r--
netrc.cpython-312.opt-2.pyc
8.448 KB
-rw-r--r--
netrc.cpython-312.pyc
8.663 KB
-rw-r--r--
nntplib.cpython-312.opt-1.pyc
43.873 KB
-rw-r--r--
nntplib.cpython-312.opt-2.pyc
32.874 KB
-rw-r--r--
nntplib.cpython-312.pyc
43.873 KB
-rw-r--r--
ntpath.cpython-312.opt-1.pyc
26.825 KB
-rw-r--r--
ntpath.cpython-312.opt-2.pyc
24.604 KB
-rw-r--r--
ntpath.cpython-312.pyc
26.825 KB
-rw-r--r--
nturl2path.cpython-312.opt-1.pyc
2.673 KB
-rw-r--r--
nturl2path.cpython-312.opt-2.pyc
2.281 KB
-rw-r--r--
nturl2path.cpython-312.pyc
2.673 KB
-rw-r--r--
numbers.cpython-312.opt-1.pyc
13.655 KB
-rw-r--r--
numbers.cpython-312.opt-2.pyc
10.167 KB
-rw-r--r--
numbers.cpython-312.pyc
13.655 KB
-rw-r--r--
opcode.cpython-312.opt-1.pyc
14.346 KB
-rw-r--r--
opcode.cpython-312.opt-2.pyc
14.213 KB
-rw-r--r--
opcode.cpython-312.pyc
14.387 KB
-rw-r--r--
operator.cpython-312.opt-1.pyc
16.961 KB
-rw-r--r--
operator.cpython-312.opt-2.pyc
14.81 KB
-rw-r--r--
operator.cpython-312.pyc
16.961 KB
-rw-r--r--
optparse.cpython-312.opt-1.pyc
65.773 KB
-rw-r--r--
optparse.cpython-312.opt-2.pyc
53.911 KB
-rw-r--r--
optparse.cpython-312.pyc
65.876 KB
-rw-r--r--
os.cpython-312.opt-1.pyc
43.589 KB
-rw-r--r--
os.cpython-312.opt-2.pyc
31.806 KB
-rw-r--r--
os.cpython-312.pyc
43.63 KB
-rw-r--r--
pathlib.cpython-312.opt-1.pyc
60.268 KB
-rw-r--r--
pathlib.cpython-312.opt-2.pyc
51.202 KB
-rw-r--r--
pathlib.cpython-312.pyc
60.268 KB
-rw-r--r--
pdb.cpython-312.opt-1.pyc
83.352 KB
-rw-r--r--
pdb.cpython-312.opt-2.pyc
68.154 KB
-rw-r--r--
pdb.cpython-312.pyc
83.457 KB
-rw-r--r--
pickle.cpython-312.opt-1.pyc
75.602 KB
-rw-r--r--
pickle.cpython-312.opt-2.pyc
69.94 KB
-rw-r--r--
pickle.cpython-312.pyc
75.908 KB
-rw-r--r--
pickletools.cpython-312.opt-1.pyc
77.551 KB
-rw-r--r--
pickletools.cpython-312.opt-2.pyc
68.849 KB
-rw-r--r--
pickletools.cpython-312.pyc
79.33 KB
-rw-r--r--
pipes.cpython-312.opt-1.pyc
10.649 KB
-rw-r--r--
pipes.cpython-312.opt-2.pyc
7.902 KB
-rw-r--r--
pipes.cpython-312.pyc
10.649 KB
-rw-r--r--
pkgutil.cpython-312.opt-1.pyc
19.437 KB
-rw-r--r--
pkgutil.cpython-312.opt-2.pyc
13.439 KB
-rw-r--r--
pkgutil.cpython-312.pyc
19.437 KB
-rw-r--r--
platform.cpython-312.opt-1.pyc
40.62 KB
-rw-r--r--
platform.cpython-312.opt-2.pyc
32.917 KB
-rw-r--r--
platform.cpython-312.pyc
40.62 KB
-rw-r--r--
plistlib.cpython-312.opt-1.pyc
39.9 KB
-rw-r--r--
plistlib.cpython-312.opt-2.pyc
37.54 KB
-rw-r--r--
plistlib.cpython-312.pyc
40.051 KB
-rw-r--r--
poplib.cpython-312.opt-1.pyc
18.32 KB
-rw-r--r--
poplib.cpython-312.opt-2.pyc
13.794 KB
-rw-r--r--
poplib.cpython-312.pyc
18.32 KB
-rw-r--r--
posixpath.cpython-312.opt-1.pyc
17.415 KB
-rw-r--r--
posixpath.cpython-312.opt-2.pyc
15.377 KB
-rw-r--r--
posixpath.cpython-312.pyc
17.415 KB
-rw-r--r--
pprint.cpython-312.opt-1.pyc
28.711 KB
-rw-r--r--
pprint.cpython-312.opt-2.pyc
26.61 KB
-rw-r--r--
pprint.cpython-312.pyc
28.754 KB
-rw-r--r--
profile.cpython-312.opt-1.pyc
21.448 KB
-rw-r--r--
profile.cpython-312.opt-2.pyc
18.565 KB
-rw-r--r--
profile.cpython-312.pyc
21.991 KB
-rw-r--r--
pstats.cpython-312.opt-1.pyc
36.866 KB
-rw-r--r--
pstats.cpython-312.opt-2.pyc
34.071 KB
-rw-r--r--
pstats.cpython-312.pyc
36.866 KB
-rw-r--r--
pty.cpython-312.opt-1.pyc
7.196 KB
-rw-r--r--
pty.cpython-312.opt-2.pyc
6.457 KB
-rw-r--r--
pty.cpython-312.pyc
7.196 KB
-rw-r--r--
py_compile.cpython-312.opt-1.pyc
9.809 KB
-rw-r--r--
py_compile.cpython-312.opt-2.pyc
6.584 KB
-rw-r--r--
py_compile.cpython-312.pyc
9.809 KB
-rw-r--r--
pyclbr.cpython-312.opt-1.pyc
14.523 KB
-rw-r--r--
pyclbr.cpython-312.opt-2.pyc
11.58 KB
-rw-r--r--
pyclbr.cpython-312.pyc
14.523 KB
-rw-r--r--
pydoc.cpython-312.opt-1.pyc
139.46 KB
-rw-r--r--
pydoc.cpython-312.opt-2.pyc
130.042 KB
-rw-r--r--
pydoc.cpython-312.pyc
139.564 KB
-rw-r--r--
queue.cpython-312.opt-1.pyc
14.331 KB
-rw-r--r--
queue.cpython-312.opt-2.pyc
10.2 KB
-rw-r--r--
queue.cpython-312.pyc
14.331 KB
-rw-r--r--
quopri.cpython-312.opt-1.pyc
8.799 KB
-rw-r--r--
quopri.cpython-312.opt-2.pyc
7.823 KB
-rw-r--r--
quopri.cpython-312.pyc
9.101 KB
-rw-r--r--
random.cpython-312.opt-1.pyc
32.332 KB
-rw-r--r--
random.cpython-312.opt-2.pyc
24.101 KB
-rw-r--r--
random.cpython-312.pyc
32.384 KB
-rw-r--r--
reprlib.cpython-312.opt-1.pyc
10.002 KB
-rw-r--r--
reprlib.cpython-312.opt-2.pyc
9.858 KB
-rw-r--r--
reprlib.cpython-312.pyc
10.002 KB
-rw-r--r--
rlcompleter.cpython-312.opt-1.pyc
8.073 KB
-rw-r--r--
rlcompleter.cpython-312.opt-2.pyc
5.504 KB
-rw-r--r--
rlcompleter.cpython-312.pyc
8.073 KB
-rw-r--r--
runpy.cpython-312.opt-1.pyc
13.977 KB
-rw-r--r--
runpy.cpython-312.opt-2.pyc
11.632 KB
-rw-r--r--
runpy.cpython-312.pyc
13.977 KB
-rw-r--r--
sched.cpython-312.opt-1.pyc
7.522 KB
-rw-r--r--
sched.cpython-312.opt-2.pyc
4.611 KB
-rw-r--r--
sched.cpython-312.pyc
7.522 KB
-rw-r--r--
secrets.cpython-312.opt-1.pyc
2.512 KB
-rw-r--r--
secrets.cpython-312.opt-2.pyc
1.521 KB
-rw-r--r--
secrets.cpython-312.pyc
2.512 KB
-rw-r--r--
selectors.cpython-312.opt-1.pyc
25.507 KB
-rw-r--r--
selectors.cpython-312.opt-2.pyc
21.604 KB
-rw-r--r--
selectors.cpython-312.pyc
25.507 KB
-rw-r--r--
shelve.cpython-312.opt-1.pyc
12.616 KB
-rw-r--r--
shelve.cpython-312.opt-2.pyc
8.589 KB
-rw-r--r--
shelve.cpython-312.pyc
12.616 KB
-rw-r--r--
shlex.cpython-312.opt-1.pyc
13.836 KB
-rw-r--r--
shlex.cpython-312.opt-2.pyc
13.347 KB
-rw-r--r--
shlex.cpython-312.pyc
13.836 KB
-rw-r--r--
shutil.cpython-312.opt-1.pyc
64.469 KB
-rw-r--r--
shutil.cpython-312.opt-2.pyc
52.217 KB
-rw-r--r--
shutil.cpython-312.pyc
64.525 KB
-rw-r--r--
signal.cpython-312.opt-1.pyc
4.368 KB
-rw-r--r--
signal.cpython-312.opt-2.pyc
4.164 KB
-rw-r--r--
signal.cpython-312.pyc
4.368 KB
-rw-r--r--
site.cpython-312.opt-1.pyc
27.722 KB
-rw-r--r--
site.cpython-312.opt-2.pyc
22.415 KB
-rw-r--r--
site.cpython-312.pyc
27.722 KB
-rw-r--r--
smtplib.cpython-312.opt-1.pyc
46.939 KB
-rw-r--r--
smtplib.cpython-312.opt-2.pyc
31.493 KB
-rw-r--r--
smtplib.cpython-312.pyc
47.089 KB
-rw-r--r--
sndhdr.cpython-312.opt-1.pyc
10.447 KB
-rw-r--r--
sndhdr.cpython-312.opt-2.pyc
9.154 KB
-rw-r--r--
sndhdr.cpython-312.pyc
10.447 KB
-rw-r--r--
socket.cpython-312.opt-1.pyc
40.942 KB
-rw-r--r--
socket.cpython-312.opt-2.pyc
32.52 KB
-rw-r--r--
socket.cpython-312.pyc
40.978 KB
-rw-r--r--
socketserver.cpython-312.opt-1.pyc
33.567 KB
-rw-r--r--
socketserver.cpython-312.opt-2.pyc
23.286 KB
-rw-r--r--
socketserver.cpython-312.pyc
33.567 KB
-rw-r--r--
sre_compile.cpython-312.opt-1.pyc
0.63 KB
-rw-r--r--
sre_compile.cpython-312.opt-2.pyc
0.63 KB
-rw-r--r--
sre_compile.cpython-312.pyc
0.63 KB
-rw-r--r--
sre_constants.cpython-312.opt-1.pyc
0.633 KB
-rw-r--r--
sre_constants.cpython-312.opt-2.pyc
0.633 KB
-rw-r--r--
sre_constants.cpython-312.pyc
0.633 KB
-rw-r--r--
sre_parse.cpython-312.opt-1.pyc
0.626 KB
-rw-r--r--
sre_parse.cpython-312.opt-2.pyc
0.626 KB
-rw-r--r--
sre_parse.cpython-312.pyc
0.626 KB
-rw-r--r--
ssl.cpython-312.opt-1.pyc
61.619 KB
-rw-r--r--
ssl.cpython-312.opt-2.pyc
51.573 KB
-rw-r--r--
ssl.cpython-312.pyc
61.619 KB
-rw-r--r--
stat.cpython-312.opt-1.pyc
5.114 KB
-rw-r--r--
stat.cpython-312.opt-2.pyc
4.514 KB
-rw-r--r--
stat.cpython-312.pyc
5.114 KB
-rw-r--r--
statistics.cpython-312.opt-1.pyc
53.929 KB
-rw-r--r--
statistics.cpython-312.opt-2.pyc
33.535 KB
-rw-r--r--
statistics.cpython-312.pyc
54.124 KB
-rw-r--r--
string.cpython-312.opt-1.pyc
11.209 KB
-rw-r--r--
string.cpython-312.opt-2.pyc
10.144 KB
-rw-r--r--
string.cpython-312.pyc
11.209 KB
-rw-r--r--
stringprep.cpython-312.opt-1.pyc
24.512 KB
-rw-r--r--
stringprep.cpython-312.opt-2.pyc
24.299 KB
-rw-r--r--
stringprep.cpython-312.pyc
24.59 KB
-rw-r--r--
struct.cpython-312.opt-1.pyc
0.333 KB
-rw-r--r--
struct.cpython-312.opt-2.pyc
0.333 KB
-rw-r--r--
struct.cpython-312.pyc
0.333 KB
-rw-r--r--
subprocess.cpython-312.opt-1.pyc
77.085 KB
-rw-r--r--
subprocess.cpython-312.opt-2.pyc
65.391 KB
-rw-r--r--
subprocess.cpython-312.pyc
77.217 KB
-rw-r--r--
sunau.cpython-312.opt-1.pyc
24.819 KB
-rw-r--r--
sunau.cpython-312.opt-2.pyc
20.341 KB
-rw-r--r--
sunau.cpython-312.pyc
24.819 KB
-rw-r--r--
symtable.cpython-312.opt-1.pyc
19.161 KB
-rw-r--r--
symtable.cpython-312.opt-2.pyc
16.689 KB
-rw-r--r--
symtable.cpython-312.pyc
19.329 KB
-rw-r--r--
sysconfig.cpython-312.opt-1.pyc
28.752 KB
-rw-r--r--
sysconfig.cpython-312.opt-2.pyc
26.053 KB
-rw-r--r--
sysconfig.cpython-312.pyc
28.752 KB
-rw-r--r--
tabnanny.cpython-312.opt-1.pyc
11.861 KB
-rw-r--r--
tabnanny.cpython-312.opt-2.pyc
10.965 KB
-rw-r--r--
tabnanny.cpython-312.pyc
11.861 KB
-rw-r--r--
tarfile.cpython-312.opt-1.pyc
120.28 KB
-rw-r--r--
tarfile.cpython-312.opt-2.pyc
106.024 KB
-rw-r--r--
tarfile.cpython-312.pyc
120.298 KB
-rw-r--r--
telnetlib.cpython-312.opt-1.pyc
27.724 KB
-rw-r--r--
telnetlib.cpython-312.opt-2.pyc
20.57 KB
-rw-r--r--
telnetlib.cpython-312.pyc
27.724 KB
-rw-r--r--
tempfile.cpython-312.opt-1.pyc
39.664 KB
-rw-r--r--
tempfile.cpython-312.opt-2.pyc
32.536 KB
-rw-r--r--
tempfile.cpython-312.pyc
39.664 KB
-rw-r--r--
textwrap.cpython-312.opt-1.pyc
17.867 KB
-rw-r--r--
textwrap.cpython-312.opt-2.pyc
10.915 KB
-rw-r--r--
textwrap.cpython-312.pyc
17.867 KB
-rw-r--r--
this.cpython-312.opt-1.pyc
1.385 KB
-rw-r--r--
this.cpython-312.opt-2.pyc
1.385 KB
-rw-r--r--
this.cpython-312.pyc
1.385 KB
-rw-r--r--
threading.cpython-312.opt-1.pyc
62.635 KB
-rw-r--r--
threading.cpython-312.opt-2.pyc
44.693 KB
-rw-r--r--
threading.cpython-312.pyc
63.703 KB
-rw-r--r--
timeit.cpython-312.opt-1.pyc
14.514 KB
-rw-r--r--
timeit.cpython-312.opt-2.pyc
8.842 KB
-rw-r--r--
timeit.cpython-312.pyc
14.514 KB
-rw-r--r--
token.cpython-312.opt-1.pyc
3.501 KB
-rw-r--r--
token.cpython-312.opt-2.pyc
3.473 KB
-rw-r--r--
token.cpython-312.pyc
3.501 KB
-rw-r--r--
tokenize.cpython-312.opt-1.pyc
24.797 KB
-rw-r--r--
tokenize.cpython-312.opt-2.pyc
20.836 KB
-rw-r--r--
tokenize.cpython-312.pyc
24.797 KB
-rw-r--r--
trace.cpython-312.opt-1.pyc
32.347 KB
-rw-r--r--
trace.cpython-312.opt-2.pyc
29.525 KB
-rw-r--r--
trace.cpython-312.pyc
32.347 KB
-rw-r--r--
traceback.cpython-312.opt-1.pyc
50.168 KB
-rw-r--r--
traceback.cpython-312.opt-2.pyc
40.444 KB
-rw-r--r--
traceback.cpython-312.pyc
50.276 KB
-rw-r--r--
tracemalloc.cpython-312.opt-1.pyc
26.234 KB
-rw-r--r--
tracemalloc.cpython-312.opt-2.pyc
24.926 KB
-rw-r--r--
tracemalloc.cpython-312.pyc
26.234 KB
-rw-r--r--
tty.cpython-312.opt-1.pyc
2.621 KB
-rw-r--r--
tty.cpython-312.opt-2.pyc
2.494 KB
-rw-r--r--
tty.cpython-312.pyc
2.621 KB
-rw-r--r--
types.cpython-312.opt-1.pyc
14.61 KB
-rw-r--r--
types.cpython-312.opt-2.pyc
12.563 KB
-rw-r--r--
types.cpython-312.pyc
14.61 KB
-rw-r--r--
typing.cpython-312.opt-1.pyc
138.356 KB
-rw-r--r--
typing.cpython-312.opt-2.pyc
105.489 KB
-rw-r--r--
typing.cpython-312.pyc
139.064 KB
-rw-r--r--
uu.cpython-312.opt-1.pyc
7.629 KB
-rw-r--r--
uu.cpython-312.opt-2.pyc
7.407 KB
-rw-r--r--
uu.cpython-312.pyc
7.629 KB
-rw-r--r--
uuid.cpython-312.opt-1.pyc
32.001 KB
-rw-r--r--
uuid.cpython-312.opt-2.pyc
24.529 KB
-rw-r--r--
uuid.cpython-312.pyc
32.229 KB
-rw-r--r--
warnings.cpython-312.opt-1.pyc
22.486 KB
-rw-r--r--
warnings.cpython-312.opt-2.pyc
19.858 KB
-rw-r--r--
warnings.cpython-312.pyc
23.284 KB
-rw-r--r--
wave.cpython-312.opt-1.pyc
31.249 KB
-rw-r--r--
wave.cpython-312.opt-2.pyc
24.905 KB
-rw-r--r--
wave.cpython-312.pyc
31.338 KB
-rw-r--r--
weakref.cpython-312.opt-1.pyc
30.444 KB
-rw-r--r--
weakref.cpython-312.opt-2.pyc
27.309 KB
-rw-r--r--
weakref.cpython-312.pyc
30.495 KB
-rw-r--r--
webbrowser.cpython-312.opt-1.pyc
25.792 KB
-rw-r--r--
webbrowser.cpython-312.opt-2.pyc
23.46 KB
-rw-r--r--
webbrowser.cpython-312.pyc
25.816 KB
-rw-r--r--
xdrlib.cpython-312.opt-1.pyc
11.564 KB
-rw-r--r--
xdrlib.cpython-312.opt-2.pyc
11.109 KB
-rw-r--r--
xdrlib.cpython-312.pyc
11.564 KB
-rw-r--r--
zipapp.cpython-312.opt-1.pyc
9.695 KB
-rw-r--r--
zipapp.cpython-312.opt-2.pyc
8.57 KB
-rw-r--r--
zipapp.cpython-312.pyc
9.695 KB
-rw-r--r--
zipimport.cpython-312.opt-1.pyc
23.517 KB
-rw-r--r--
zipimport.cpython-312.opt-2.pyc
21.063 KB
-rw-r--r--
zipimport.cpython-312.pyc
23.603 KB
-rw-r--r--