Your IP : 18.225.92.23


Current Path : /opt/alt/python313/lib64/python3.13/__pycache__/
Upload File :
Current File : //opt/alt/python313/lib64/python3.13/__pycache__/difflib.cpython-313.opt-1.pyc

�

+}glE���Sr/SQrSSKJr SSKJr SSKJ	r	 \"SS5r
Sr"S	S
5rS$Sjr
Sr"S
S5rSSKr\R""S5R$4SjrS%SjrSrS&SjrSrS&SjrSrS'SjrS\4SjrSS\4SjrSrSrSrSr "SS \!5r"CS!r#S"r$\%S#:Xa\$"5 gg)(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�"�U(aSU-U-$g)Ng@��?�)�matches�lengths  �./opt/alt/python313/lib64/python3.13/difflib.py�_calculate_ratior's��
��W�}�v�%�%��c�|�\rSrSrSrSSjrSrSrSrSr	SS	jr
S
rSrSSjr
S
rSrSr\"\5rSrg)r�,a�
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�Z�XlS=UlUlX@lUR	X#5 g)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)�selfrrrr s     r�__init__�SequenceMatcher.__init__xs)��v�������� �
��
�
�a�rc�H�URU5 URU5 g)zsSet 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!�SequenceMatcher.set_seqs�s��	
�
�
�a���
�
�a�rc�J�XRLagXlS=UlUlg)a�Set 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&�SequenceMatcher.set_seq1�s$��*
���;����.2�2���t�|rc�x�XRLagXlS=UlUlSUlUR	5 g)a�Set 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'�SequenceMatcher.set_seq2�s5��*
���;����.2�2���t�|�������rc�n�URn0=Uln[U5H(up4URU/5nUR	U5 M* [5=UlnURnU(aBUR5H#nU"U5(dMURU5 M% UHnX$	M [5=Ul
n[U5n	UR(aVU	S:�aOU	S-S-n
UR5H'upK[U5U
:�dMURU5 M) UHnX$	M ggg)N���d�)r�b2j�	enumerate�
setdefault�append�set�bjunkr�keys�add�bpopular�lenr �items)r"rr5�i�elt�indices�junkr�popular�n�ntest�idxss            r�	__chain_b�SequenceMatcher.__chain_b
s��
�F�F������3���l�F�A��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�9�u�$��K�K��$�)����H��&�=rc��URURURURR4upVpxUc[U5nUc[U5nXSp�n	0n/n
[
X5HknURn0nURX^U
5H@nUU:aMUU:�a O1U"US-
S5S-=nUU'UU:�dM/UU-
S-UU-
S-Up�n	MB UnMm X�:�acX�:�a^U"XjS-
5(dLXYS-
XjS-
:Xa<U	S-
U
S-
US-p�n	X�:�a)X�:�a$U"XjS-
5(dXYS-
XjS-
:XaM<X�-U:acX�-U:a[U"XjU-5(dIXYU-XjU-:Xa9US-
nX�-U:a,X�-U:a$U"XjU-5(dXYU-XjU-:XaM9X�:�acX�:�a^U"XjS-
5(aLXYS-
XjS-
:Xa<U	S-
U
S-
US-p�n	X�:�a)X�:�a$U"XjS-
5(aXYS-
XjS-
:XaM<X�-U:acX�-U:a[U"XjU-5(aIXYU-XjU-:Xa9US-nX�-U:a,X�-U:a$U"XjU-5(aXYU-XjU-:XaM9[X�U5$)a9Find 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)
rr4)	rrr5r:�__contains__r>�range�getr
)r"�alo�ahi�blo�bhirrr5�isbjunk�besti�bestj�bestsize�j2len�nothingr@�j2lenget�newj2len�j�ks                   r�find_longest_match�"SequenceMatcher.find_longest_match1s���t"�V�V�T�V�V�T�X�X�t�z�z�7N�7N�N���c��;��a�&�C��;��a�&�C�!$�1�h�������s��A��y�y�H��H��W�W�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�(�E�(�,��E�!�(�k�e�k��!�!�G�*�%�%��a��j�A�A�g�J�&�%*�1�W�e�A�g�x��z�(�E��k�e�k��!�!�G�*�%�%��a��j�A�A�g�J�&��n�s�"�u�~��';��!�(�N�+�,�,��h���1�8�^�#4�4���M�H��n�s�"�u�~��';��!�(�N�+�,�,��h���1�8�^�#4�4��k�e�k��a�a��j�!�!��a��j�A�A�g�J�&�%*�1�W�e�A�g�x��z�(�E��k�e�k��a�a��j�!�!��a��j�A�A�g�J�&��n�s�"�u�~��';��a�h��'�(�(��h���1�8�^�#4�4��!�|�H��n�s�"�u�~��';��a�h��'�(�(��h���1�8�^�#4�4��U�8�,�,rc�<�URbUR$[UR5[UR5p!SUSU4/n/nU(a�UR	5upVpxURXVXx5=up�p�U(aWUR
U5 XY:aXz:aUR
XYXz45 X�-U:a!X�-U:aUR
X�-XjU-U45 U(aM�UR5 S=n
=p�/nUH=unnnX�-U:XaX�-U:XaUU-
nMU(aUR
X�U45 UUUp�n
M? U(aUR
X�U45 UR
XS45 [[[RU55UlUR$)a�Return 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*r>rr�popr\r8�sort�list�mapr
�_make)r"�la�lb�queuer*rNrOrPrQr@rZr[�x�i1�j1�k1�non_adjacent�i2�j2�k2s                    r�get_matching_blocks�#SequenceMatcher.get_matching_blocks�s���&���+��'�'�'��T�V�V��c�$�&�&�k�B��R��B�� �����!&�����C�c��1�1�#�C�E�E�G�A�!���&�&�q�)��7�s�w��L�L�#�#�!1�2��3��9���s���L�L�!�#�s�a�C��!5�6��e�	����
����R���)�J�B��B��w�"�}���B���b���
� �'�'����5���R����*��������-����b�a�[�*�#�C����\�$B�C����#�#�#rc�>�URbUR$S=p/=UlnUR5HcupEnSnX:aX%:aSnOX:aSnOX%:aSnU(aURXqXBU45 XF-XV-p!U(dMOURSXAXR45 Me U$)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+ror8)r"r@rZ�answer�ai�bj�size�tags        r�get_opcodes�SequenceMatcher.get_opcodes�s���:�<�<�#��<�<���	�� "�"���v� �4�4�6�L�B�D��C��v�!�&�������������
�
���r�2�4��7�B�G�q��t��
�
����6�8�'7�(�
rc#�p# �UR5nU(dS/nUSSS:Xa+USup4pVnU[XEU-
5U[XgU-
5U4US'USSS:Xa*USup4pVnX4[XTU-5U[XvU-54US'X-n/n	UHwup4pVnUS:XaVXT-
U:�aNU	RX4[XTU-5U[XvU-545 U	v� /n	[XEU-
5[XgU-
5pdU	RX4XVU45 My U	(a![	U	5S:XaU	SSS:XdU	v� ggg7f)a9Isolate 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)]]
)rvrr4rr4rrv���r4N)r|�max�minr8r>)
r"rE�codesr{rhrlrirm�nn�groups
          r�get_grouped_opcodes�#SequenceMatcher.get_grouped_opcodes#sX���2� � �"���*�+�E���8�A�;�'�!�"'��(��C�R�R��C��q�D�M�2�s�2�!�t�}�b�@�E�!�H���9�Q�<�7�"�"'��)��C�R�R���R�A����C��q�D�M�A�E�"�I�
�U����#(��C�R�R��g�~�"�%�"�*����c�s�2�!�t�}�b�#�b�Q�$�-�H�I������R�A����B�1��
�B��L�L�#�2�2�.�/�$)��#�e�*�a�-�E�!�H�Q�K�7�,B��K�-C�5�s�D4D6c��[SUR555n[U[UR5[UR
5-5$)aRReturn 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�*# �UH	oSv� M g7f)rNr)�.0�triples  r�	<genexpr>�(SequenceMatcher.ratio.<locals>.<genexpr>ks���J�/I�V�R�j�/I�s�)�sumrorr>rr)r"rs  r�ratio�SequenceMatcher.ratioUs?��,�J�t�/G�/G�/I�J�J�����T�V�V��s�4�6�6�{�)B�C�Crc��URc30=UlnURHnURUS5S-X'M URn0nURSpTURH;nU"U5(aX2nOURUS5nUS-
X2'US:�dM6US-nM= [U[
UR5[
UR5-5$)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.
rr4)r.rrMrKrrr>)r"r.rA�avail�availhasr�numbs       r�quick_ratio�SequenceMatcher.quick_rations����?�?�"�+-�-�D�O�j��v�v��",�.�.��a�"8�1�"<�
����_�_�
���!�.�.��'��6�6�C���}�}��z��!�~�~�c�1�-�����E�J��a�x�!�A�+��� ���T�V�V��s�4�6�6�{�)B�C�Crc��[UR5[UR5p![[	X5X-5$)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().
)r>rrrr�)r"rdres   r�real_quick_ratio� SequenceMatcher.real_quick_ratio�s0���T�V�V��c�$�&�&�k�B� ��B��R�W�5�5r)
rr rr5r:r=r.rr*r+)NrrrrT)rNrN)�)�__name__�
__module__�__qualname__�__firstlineno__�__doc__r#r!r&r'r/r\ror|r�r�r�r��classmethodr�__class_getitem__�__static_attributes__rrrrr,s]��H�T>�@
�3�4�X%�Nr-�hE$�N5�n0�dD�2D�:
6�$�L�1�rrc���US:�d[SU<35eSUs=::aS::dO [SU<35e/n[5nURU5 UHwnURU5 UR	5U:�dM*UR5U:�dM@UR
5U:�dMVURUR
5U45 My [X$5nUVVs/sHupvUPM	 snn$s snnf)awUse 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�r8�	_nlargest)�word�
possibilitiesrE�cutoff�result�srg�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�C0c�D�SRS[X555$)zAReplace whitespace with the original whitespace characters in `s`rrc3�d# �UH&upUS:XaUR5(aUOUv� M( g7f)� N)�isspace)r��c�tag_cs   rr��$_keep_original_ws.<locals>.<genexpr>�s.����%�H�A��c�\�a�i�i�k�k��u�4�%�s�.0)�join�zip)r��tag_ss  r�_keep_original_wsr��s$��
�7�7���A�
���rc�F�\rSrSrSrSSjrSrSrSrSr	S	r
S
rSrg)
ri�a�
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��XlX lg)aU
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#�Differ.__init__*s��(!�
� �
rc	#�t# �[URX5nUR5H�upEpgnUS:XaURXXbXx5n	O]US:XaUR	SXU5n	OCUS:XaUR	SX'U5n	O)US:XaUR	SXU5n	O[SU<35eU	S	hv�N M� g	N	7f)
aY
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
rsrt�-ru�+rvr��unknown tag N)rr�r|�_fancy_replace�_dumpr�)
r"rr�cruncherr{rNrOrPrQ�gs
          r�compare�Differ.compareAs����4#�4�=�=�!�7��'/�';�';�'=�#�C�c���i���'�'����A������J�J�s�A�C�0������J�J�s�A�C�0������J�J�s�A�C�0�� �S�!:�;�;��L�L�(>�
�s�B*B8�,B6�-
B8c#�J# �[X45HnU<SX%<3v� M g7f)z4Generate comparison results for a same-tagged range.r�N)rL)r"r{rg�lo�hir@s      rr��Differ._dumpjs ����r��A� �!�$�'�'��s�!#c#��# �Xe-
X2-
:a'URSXEU5nURSXU5nO&URSXU5nURSXEU5nXx4H
n	U	Shv�N M gN	7f)Nr�r�)r�)
r"rrNrOrrPrQ�first�secondr�s
          r�_plain_replace�Differ._plain_replaceosq����9�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�A#A1�%A/�&
A1c#�"# �Supx[UR5n	Sup�[XV5H�nXLn
U	RU
5 [X#5HynXnX�:XaU
cX�p�MU	R	U5 U	R5U:�dM:U	R
5U:�dMPU	R5U:�dMfU	R5X�nnnM{ M� Xx:a%U
cURXX4XV5Shv�N gX�SnnnOSn
URXWXEW5Shv�N UUUUnnU
c�S=nnU	RUU5 U	R5HpunnnnnUU-
UU-
nnUS:XaUSU--
nUSU--
nM+US:Xa
US	U--
nM;US
:Xa
USU--
nMKUS:XaUS
U--
nUS
U--
nMc[SU<35e URUUUU5Shv�N OSU-v� URUUS-X4US-U5Shv�N gGNN�N5N7f)a�
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�?�NNNrrrrs�^rtr�rur�rvr�r��  r4)rr�rLr'r&r�r�r�r��
_fancy_helperr!r|r��_qformat)r"rrNrOrrPrQ�
best_ratior�r��eqi�eqjrZryr@rx�best_i�best_j�aelt�belt�atags�btagsr{�ai1�ai2�bj1�bj2rdres                             rr��Differ._fancy_replace}sb���*(��
�"�4�=�=�1�����
�s��A���B����b�!��3�_���T���8��{�#$�S���!�!�"�%��,�,�.��;��*�*�,�z�9��n�n�&��3�19���1A�1���J��!%�!�(���{��.�.�q�s�s�H�H�H��),�3�J�F�F�J��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[�BH�H�H�49H�-H�.$H�H	�CH�H�*H�H
�H�	H�H�
Hc#�# �/nX#:a-XV:aURXX4XV5nO,URSXU5nOXV:aURSXEU5nUShv�N gN7f)Nr�r�)r�r�)r"rrNrOrrPrQr�s        rr��Differ._fancy_helper�sX������9��y��'�'����A���J�J�s�A�C�0��
�Y��
�
�3���,�A����s�AA�A�Ac#��# �[X5R5n[X$5R5nSU-v� U(aSUS3v� SU-v� U(a	SUS3v� gg7f)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��Differ._qformat�sh��� "�%�/�6�6�8��!�%�/�6�6�8���U�l����u�g�R�.� ��U�l����u�g�R�.� ��s�A!A#)r�r�r�)
r�r�r�r�r�r#r�r�r�r�r�r�r�rrrrr�s0��S�j!�.'�R(�
�\J�|
�!rrNz
\s*(?:#\s*)?$c��U"U5SL$)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�
�X;$)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�|�US-nX-
nUS:XaSRU5$U(dUS-nSRX#5$�z Convert range to the "ed" formatr4z{}z{},{}��format��start�stop�	beginningrs    r�_format_range_unifiedr�<sE����	�I�
�\�F�
��{��{�{�9�%�%���Q��	��>�>�)�,�,rc	#�|# �[XX#XEU5 Sn[SX5RU5GHn	U(d^SnU(aSRU5OSn
U(aSRU5OSnSRX*U5v� SRX;U5v� U	SU	S	p�[	US
U
S5n[	USU
S
5nSRX�U5v� U	HXunnnnnUS:XaUUUH
nSU-v� M M$US;aUUUH
nSU-v� M US;dMEUUUH
nSU-v� M MZ GM g7f)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�	{}rr�
--- {}{}{}z
+++ {}{}{}rrr4�r��z@@ -{} +{} @@{}rvr�>rtrsr�>rursr�)�_check_typesrr�r�r�)rr�fromfile�tofile�fromfiledate�
tofiledaterE�lineterm�startedr��fromdate�todater��last�file1_range�file2_ranger{rhrlrirmr�s                      rr
r
GsS���R��x��8�L��G� ��a�*�>�>�q�A����G�6B�v�}�}�\�2��H�2<�V�]�]�:�.�"�F��%�%�h�(�C�C��%�%�f�h�?�?��A�h��b�	�t�+�E�!�H�d�1�g�>��+�E�!�H�d�1�g�>���&�&�{��J�J�#(��C��R��R��g�~��b��H�D���*�$�%���+�+��b��H�D���*�$�%��+�+��b��H�D���*�$�%�$)�B�s�DD<�D<c��US-nX-
nU(dUS-nUS::aSRU5$SRX"U-S-
5$r�r�r�s    r�_format_range_contextr�sO����	�I�
�\�F���Q��	�
��{��{�{�9�%�%��>�>�)��%7�!�%;�<�<rc	#�"# �[XX#XEU5 [SSSSS9nSn	[SX5RU5GHOn
U	(d^Sn	U(aS	R	U5OS
nU(aS	R	U5OS
nSR	X+U5v� SR	X<U5v� U
S
U
Sp�SU-v� [U
SUS5nSR	X�5v� [
SU
55(a-U
H'unnn nUS:wdMUUUH
nUUU-v� M M) [U
SUS5nSR	UU5v� [
SU
55(dGM"U
H'un nnnUS:wdMUUUH
nUUU-v� M M) GMR g7f)a�
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�)rurtrsrvFNTr�rrz
*** {}{}{}r�rrz***************r4r�z
*** {} ****{}c3�6# �UHun   o!S;v� M g7f)>rtrsNr�r�r{�_s   rr��context_diff.<locals>.<genexpr>�����I�5���Q��1�a�+�+�5���rur�rz
--- {} ----{}c3�6# �UHun   o!S;v� M g7f)>rursNrrs   rr�r�rrrt)r�dictrr�r�r�any)rrrrrrrEr�prefixrr�rr	r�r
rr{rhrlrr�rrirms                        rr	r	�s����X��x��8�L�
��d�D��
E�F��G� ��a�*�>�>�q�A����G�6B�v�}�}�\�2��H�2<�V�]�]�:�.�"�F��%�%�h�(�C�C��%�%�f�h�?�?��A�h��b�	�t��(�*�*�+�E�!�H�d�1�g�>���$�$�[�;�;��I�5�I�I�I�%*�!��R��Q���(�?� !�"�R���$�S�k�D�0�0�!)�&+�
,�E�!�H�d�1�g�>���$�$�[�(�;�;��I�5�I�I�I�%*�!��Q��2�r��(�?� !�"�R���$�S�k�D�0�0�!)�&+�1B�s�C<F�AF�F�/ Fc��U(aE[US[5(d-[S[US5R<SUS<S35eU(aE[US[5(d-[S[US5R<SUS<S35eUH'n[U[5(aM[SU<35e g)Nrz"lines to compare must be str, not � (�)z all arguments must be str, not: )�
isinstance�str�	TypeError�typer�)rr�args�args    rrr�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	
#�# �Sn	[[X�55n[[X�55nU	"U5nU	"U5nU	"U5nU	"U5nU	"U5nU"XX4XVXx5n
U
HnURSS5v� M g7f)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��URSS5$![a/nS[U5R<SU<S3n[	U5UeSnAff=f)N�ascii�surrogateescapez!all arguments must be bytes, not rr)�decode�AttributeErrorr r�r)r��err�msgs   rr'�diff_bytes.<locals>.decodesK��	*��8�8�G�%6�7�7���	*���G�$�$�a�)�C��C�.�c�)��	*�s��
A
�*A�A
r%r&N)rarb�encode)�dfuncrrrrrrrErr'�linesr�s            rrr�s����*�	
�S��^��A��S��^��A��h��H�
�F�^�F��,�'�L��
�#�J��h��H��!��,�A�P�E����k�k�'�#4�5�5��s�A=A?c�6�[X#5RX5$)a�
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�(�%�-�-�a�3�3rc#�N^^^^# �SSKnUR"S5m[XX45mSS/4U4SjjmUU4SjmU4SjnU"5nUcUShv�N gUS-
nSnSS/U-p�SnUSLa%[U5up�nX�-nX�U4X�'U	S-
n	USLaM%X�:�aS	v� UnOU	nSn	U(aX�-nU	S-
n	X�v� US-nU(aMUS-
nU(a/[U5up�nU(aUS-
nOUS-nX�U4v� U(aM/M�N�![a gf=f![a gf=f7f)
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�>�X2==S-
ss'UcX2URS5SS4$US:XaoURS5URS5pT/nU4SjnTRXu5 [U5H unup�USU	S-U-XIU
-S-XJS-nM" USSnO(URS5SSnU(dS	nSU-U-S-nX2U4$)
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.
r4Nrr��?c��URURS5SUR5/5 URS5$)Nr4r)r8r��span)�match_object�sub_infos  r�record_sub_info�3_mdiff.<locals>._make_line.<locals>.record_sub_info�s=������!3�!3�A�!6�q�!9�,�:K�:K�:M� N�O�#�)�)�!�,�,r��r�)r_�sub�reversed)r.�
format_key�side�	num_lines�text�markersr6r7�key�begin�end�	change_res           �r�
_make_line�_mdiff.<locals>._make_linefs���.	��1������O�E�I�I�a�L���$4�5�5����!�I�I�a�L�%�)�)�A�,�'��H�6>�
-�
�M�M�/�2�$,�H�#5���K�U��A�e�}�T�)�#�-�d��o�=�d�B�4��:�M��$6����8�D��9�9�Q�<���#�D�����*�$�t�+�d�2�D����%�%rc3�@># �/nSup[U5S:a,UR[TS55 [U5S:aM,SRUVs/sHo3SPM	 sn5nUR	S5(aUnGO�UR	S5(aT"USS5T"USS	5S4v� M�UR	S
5(aUS	-nT"USS5SS4v� M�UR	S
5(aT"USS5SpeUS	-
SpGOBUR	S5(aT"USS5T"USS	5S4v� GM.UR	S5(aT"USS5T"USS	5S4v� GM^UR	S5(aUS	-nT"USS5SS4v� GM�UR	S5(aUS	-
nST"USS	5S4v� GM�UR	S5(aST"USS	5peUS	-SpO`UR	S5(aUS	-
nST"USS	5S4v� GM
UR	S5(aT"USSSS5T"USS	5S4v� GM@US:aUS	-
nSv� US:aMUS:�aUS	-nSv� US:�aMUR	S5(agWWS4v� GM�s snf7f)aQYields 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�Xrrrz-?+?r2r4z--++r�N)z--?+z--+r�z-+?z-?+z+--r�)r�z+-r�F)N�rrr�T)rJNT)r>r8�nextr��
startswith)	r.�num_blanks_pending�num_blanks_to_yieldr�r��	from_line�to_linerF�diff_lines_iterators	       ��r�_line_iterator�_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�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%�AJ�J�J�#G<J�!J�8&Jc3�># �T"5n//p![U5S:Xd[U5S:Xa[[U5up4nUbURX545 UbURXE45 [U5S:XaMJ[U5S:XaM[UR	S5up6UR	S5upGX4U=(d U4v� M�![a gf=f7f)a,Yields 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)r>rK�
StopIterationr8r_)	�
line_iterator�	fromlines�tolinesrOrP�
found_diff�fromDiff�to_diffrRs	        �r�_line_pair_iterator�#_mdiff.<locals>._line_pair_iterator�s�����'�(�
��R�'���y�>�1�$��G��a���59�-�5H�2�I�
��(��$�$�i�%;�<��&��N�N�G�#7�8��y�>�1�$��G��a��#,�-�-��"2��I�&�{�{�1�~��G��X�%8��9�9���
%����s3�*C�B?�9C�7C�7C�?
C�	C�C�Cr4F)NNN)�re�compilerrKrU)rWrX�contextr�r�r^r\�line_pair_iterator�lines_to_write�index�contextLinesrYrOrPr@rRrFrErQs               @@@@r�_mdiffre<s�����D��
�
�+�,�I� �	�(�D��78��e�6&�pV-�p:�B-�.����%�%�%�	�1������#$�d�V�W�%5�<��J���%��59�:L�5M�2�I�
��O��#,�z�"B�����
����%���&�&�!(��!&���� ��O����
��"�o�%��!�#��	!�.�%�Q�Y�N�
�$�59�:L�5M�2�I�
�!�)0����&�!�+��#�j�8�8�%�n�=�
	&��%�����:!�
��
�sf�A
D%�D�D%�-D�;D%�2D%�D%�4D�D%�
D�D%�D�D%�
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>aH
        table.diff {font-family:Courier; 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��\rSrSrSr\r\r\r\rSr	SSS\
4SjrSSS.S	jjrS
r
SrSrS
rSrSrSrSSjrSrg)ri�aWFor 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�4�XlX lX0lX@lg)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#�HtmlDiff.__init__�s�� �
�%��!��!�rzutf-8)�charsetc��UR[URURUR	XX4XVS9US9-RUS5R
U5$)a�Returns 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
)r`�numlines)�styles�legend�tablerp�xmlcharrefreplace)�_file_templater�_styles�_legend�
make_tabler,r')r"rWrX�fromdesc�todescr`rrrps        r�	make_file�HtmlDiff.make_file�s`��&�#�#�d��<�<��<�<��/�/�)�h�*1�"�F��'
�
��6�'�.�/���w��
	@rc�^�U4SjnUVs/sH
oC"U5PM nnUVs/sH
oC"U5PM nnX4$s snfs snf)a�Returns 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��>�URSS5nURTR5nURSS5nURSS5RS5$)Nr�r9�	r�)rs�
expandtabsrir�)r�r"s �r�expand_tabs�2HtmlDiff._tab_newline_replace.<locals>.expand_tabs�sS����<�<��D�)�D��?�?�4�=�=�1�D��<�<��D�)�D��<�<��S�)�0�0��6�6rr)r"rWrXr�r�s`    r�_tab_newline_replace�HtmlDiff._tab_newline_replace�sM���	7�4=�=�9�4�[��&�9�	�=�18�9���;�t�$���9�� � ��>��9s�9�>c���U(dURX#45 g[U5nURnXE::dXCRS5S--
U::aURX#45 gSnSnSnXu:aBXd:a=X6S:XaUS-
nX6nUS-
nOX6S:XaUS-
nSnO
US-
nUS-
nXu:aXd:aM=USUn	X6Sn
U(a
U	S-n	SU-U
-n
URX)45 UR	USU
5 g)	atBuilds 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.
Nr9r�rrrr4r:�>)r8r>rj�count�_split_line)r"�	data_list�line_numr@rzr�r@rE�mark�line1�line2s           rr��HtmlDiff._split_line�s)������h�_�-���4�y�������K�d�Z�Z��%5�a�%7�8�S�@����h�_�-��
��
�����g�!�(��w�$���Q����w���Q�����D���Q������Q����Q����g�!�(��R�a����R���
��D�L�E��4�K�%�'�E�	���(�)�*�	
����3�u�-rc#�T# �UH�up#nUcX#U4v� MX#supVupx//p�URX�U5 URX�U5 U	(d	U
(dMPU	(aU	RS5nOSnU
(aU
RS5nOSnX#U4v� U	(aMEU
(aMNM� g7f)z5Returns iterator that splits (wraps) mdiff text linesNr)rrr�)r�r_)r"�diffs�fromdata�todata�flag�fromline�fromtext�toline�totext�fromlist�tolists           r�
_line_wrapper�HtmlDiff._line_wrappers����%*� �H�D��|��d�*�*��2:�/��X���!��V����X�x�8����V�6�2��f�f��'�|�|�A��H�'�H��#�Z�Z��]�F�%�F��d�*�*��(�f�f�%*�s�AB(�AB(�B(�#B(c�@�///pCnUH^upVnURUR"SU/UQ765 URUR"SU/UQ765 URU5 M` X#U4$![a% URS5 URS5 NGf=f)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.
rr4N)r8�_format_liner)r"r�r�r��flaglistr�r�r�s        r�_collect_lines�HtmlDiff._collect_lines.s���$&�b����$)� �H�D�
$����� 1� 1�!�D� C�(� C�D��
�
�d�/�/��$�?��?�@�

�O�O�D�!�%*��x�'�'���
$�����%��
�
�d�#�
$�s�AA.�.,B�Bc�"�SU-nSURU<U<S3nURSS5RSS5RS	S
5nURSS5R5nS
U<SU<SU<S3$![a SnNof=f)z�Returns 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="�"rr�&z&amp;r�z&gt;�<z&lt;r��&nbsp;z<td class="diff_header"z</td><td nowrap="nowrap">z</td>)�_prefixrrsr�)r"r>r��linenumr@�ids      rr��HtmlDiff._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��S[R-nS[R-n[=RS-
slX/Ulg)zCreate unique anchor prefixeszfrom%d_zto%d_r4N)r�_default_prefixr�)r"�
fromprefix�toprefixs   r�_make_prefix�HtmlDiff._make_prefixZs?��
��!9�!9�9�
��X�5�5�5��� � �A�%� �"�,��rc��URSnS/[U5-nS/[U5-nSup�Sn[U5HAup�U
(a3U
(d*Sn
Un[SX�-
/5nSXi4-X|'U	S-
n	SXi4-X�'M=M?Sn
MC U(dS/nS/nS/nSnU(aS	/nUnOS
/=pUS(dSU-US'SU-X�'XX8U4$)
zMakes list of "next" linksr4rr)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�r>r6r�)r"r�r�r�r`rrr��next_id�	next_href�num_chg�	in_changer
r@r�s              r�_convert_flags�HtmlDiff._convert_flagses���<�<��?���$�s�8�}�$���D��X��&�	�%�������)�F�A�� � $�I��D��Q�q�z�N�+�A�!:�h�=O�!O�G�J��q�L�G�&J�!�N+�'+�I�O�!�"�	�!*�$��w�H��d�G���I��D��P�Q��!��%O�$P�P����{�>��I�I�a�L�?�8�L�	���x�'�9�9rc
�`�UR5 URX5upU(aUnOSn[XXpRURS9nUR
(aUR
U5nURU5up�nURX�X�U5up�p�n
/nSn[[U55HKnUUcUS:�aURS5 M"M$URX�UUUU	UUUU
U4-5 MM U(dU(aSS<SU-<S<SU-<S	3nOS
nUR[S
RU5UURSS9-nUR!S
S5R!SS5R!SS5R!SS5R!SS5$)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>rrr4)�	data_rows�
header_rowrz+z<span class="diff_add">z-z<span class="diff_sub">z^z<span class="diff_chg">r:z</span>r�r�)r�r�rerkrlrjr�r�r�rLr>r8�_table_templaterr�r�rs)r"rWrXr{r|r`rr�
context_linesr�r�r�r�r�r�r��fmtr@r�rus                   rrz�HtmlDiff.make_table�s���(	
����!�5�5�i�H��	��$�M� �M��y����#�~�~�/������&�&�u�-�E�$(�#6�#6�u�#=� ���6:�5H�5H��H�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)rlrkr�rirj)rrrrF�)r�r�r�r�r�rwrxr�ryr�rr#r}r�r�r�r�r�r�r�rzr�rrrrr�s��
�$�N��G�%�O��G��O��4��+�"�"AC�*+�@�8?�@�6!�.5.�n+�8(�*#�.	-�-:�^IN��K,rrc#�# �SSS.[U5nSU4nUHnUSSU;dMUSSv� M g![a [SU-5Sef=f7f)a�
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�)r4r�z)unknown delta choice (must be 1 or 2): %rNr�r�)�int�KeyErrorr�)�delta�whichr{�prefixesr�s     rrr�sv���,.��4� ��U��,���c�{�H������8�x���q�r�(�N���	�.��D�"�#�$�)-�	.�.�s�A�5�A�A�A�Ac�4�SSKnSSKnURU5$)Nr)�doctest�difflib�testmod)r�r�s  r�_testr�s����?�?�7�#�#r�__main__)r�g333333�?)z 	)rrrrrrrrr�r�)rrrrr��
)&r��__all__�heapqrr��collectionsr�_namedtuple�typesrr
rrrr�rr^r_�matchrrr�r
rr	rrrrerwrxr�ry�objectrrr�r�rrr�<module>r�s���8>��(�1���G�Z�(���
k	2�k	2�\.&�b�l!�l!�~	
��:�:�&6�7�=�=�!� �.	-�=?�.2�B%�R	=�,.�?C�J1�XK�"25�?D�6�<�(9�#4�J(,�d�%�K�\��(0������"],�v�],�~
��@$��z��	�G�r

?>