<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
U
    ʗRe                     @   s8   d dl Z d dlZddlmZ edZG dd dZdS )    N   )ProbingStates%   [a-zA-Z]*[-]+[a-zA-Z]*[^a-zA-Z-]?c                   @   sn   e Zd ZdZdddZdd Zedd Zd	d
 Zedd Z	dd Z
edd Zedd Zedd ZdS )CharSetProbergffffff?Nc                 C   s   d | _ || _tt| _d S N)_statelang_filterlogging	getLogger__name__logger)selfr    r   /builddir/build/BUILDROOT/alt-python38-pip-22.2.1-2.el8.x86_64/opt/alt/python38/lib/python3.8/site-packages/pip/_vendor/chardet/charsetprober.py__init__+   s    zCharSetProber.__init__c                 C   s   t j| _d S r   )r   	DETECTINGr   r   r   r   r   reset0   s    zCharSetProber.resetc                 C   s   d S r   r   r   r   r   r   charset_name3   s    zCharSetProber.charset_namec                 C   s   t d S r   )NotImplementedError)r   byte_strr   r   r   feed7   s    zCharSetProber.feedc                 C   s   | j S r   )r   r   r   r   r   state:   s    zCharSetProber.statec                 C   s   dS )Ng        r   r   r   r   r   get_confidence>   s    zCharSetProber.get_confidencec                 C   s   t dd| } | S )Ns   ([ -])+    )resub)bufr   r   r   filter_high_byte_onlyA   s    z#CharSetProber.filter_high_byte_onlyc                 C   sZ   t  }t| }|D ]@}||dd  |dd }| sJ|dk rJd}|| q|S )u7  
        We define three types of bytes:
        alphabet: english alphabets [a-zA-Z]
        international: international characters [-ÿ]
        marker: everything else [^a-zA-Z-ÿ]
        The input buffer can be thought to contain a series of words delimited
        by markers. This function works to filter all words that contain at
        least one international character. All contiguous sequences of markers
        are replaced by a single space ascii character.
        This filter applies to all scripts which do not use English characters.
        N   r   )	bytearrayINTERNATIONAL_WORDS_PATTERNfindallextendisalpha)r   filteredwordsword	last_charr   r   r   filter_international_wordsF   s    
z(CharSetProber.filter_international_wordsc                 C   s   t  }d}d}t| d} t| D ]R\}}|dkrB|d }d}q$|dkr$||krr|sr|| ||  |d d}q$|s|| |d	  |S )
a[  
        Returns a copy of ``buf`` that retains only the sequences of English
        alphabet and high byte characters that are not between <> characters.
        This filter can be applied to all scripts which contain both English
        characters and extended ASCII characters, but is currently only used by
        ``Latin1Prober``.
        Fr   c   >r      <r   TN)r    
memoryviewcast	enumerater#   )r   r%   in_tagprevcurrbuf_charr   r   r   remove_xml_tagsh   s     	
zCharSetProber.remove_xml_tags)N)r
   
__module____qualname__SHORTCUT_THRESHOLDr   r   propertyr   r   r   r   staticmethodr   r)   r4   r   r   r   r   r   '   s   




!r   )r   r   enumsr   compiler!   r   r   r   r   r   <module>   s   