| Server IP : 66.29.146.62 / Your IP : 216.73.216.152 Web Server : LiteSpeed System : Linux premium231.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64 User : dokkdzvi ( 925) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/alt/python-internal/lib64/python3.11/__pycache__/ |
Upload File : |
�
!A?hlE � � � d Z g d�ZddlmZ ddlmZ ddlm Z edd� � Z
d� Z G d � d
� � Zd+d
�Z
d� Z G d� d� � ZddlZ ej d� � j fd�Zd,d�Zd� Z d-d�Zd� Z d-d�Zd� Z d.d�Zdefd �Zddefd!�Zd"Zd#Zd$Zd%Z G d&� d'e!� � Z"[d(� Z#d)� Z$e%d*k r e$� � dS dS )/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 |z S dS )Ng @� �?� )�matches�lengths �4/opt/alt/python-internal/lib64/python3.11/difflib.py�_calculate_ratior '