<!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>

Rec           @   s   d  Z  d e f d     YZ d e f d     YZ d e f d     YZ d e f d     YZ d	 e f d
     YZ d e f d     YZ d S(   sr   
All of the Enums that are used throughout the chardet package.

:author: Dan Blanchard (dan.blanchard@gmail.com)
t
   InputStatec           B   s    e  Z d  Z d Z d Z d Z RS(   sS   
    This enum represents the different states a universal detector can be in.
    i    i   i   (   t   __name__t
   __module__t   __doc__t
   PURE_ASCIIt	   ESC_ASCIIt	   HIGH_BYTE(    (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/chardet/enums.pyR       s   t   LanguageFilterc           B   sJ   e  Z d  Z d Z d Z d Z d Z d Z d Z e e BZ	 e	 e Be BZ
 RS(   sj   
    This enum represents the different language filters we can apply to a
    ``UniversalDetector``.
    i   i   i   i   i   i   (   R   R   R   t   CHINESE_SIMPLIFIEDt   CHINESE_TRADITIONALt   JAPANESEt   KOREANt   NON_CJKt   ALLt   CHINESEt   CJK(    (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/chardet/enums.pyR      s   
t   ProbingStatec           B   s    e  Z d  Z d Z d Z d Z RS(   sG   
    This enum represents the different states a prober can be in.
    i    i   i   (   R   R   R   t	   DETECTINGt   FOUND_ITt   NOT_ME(    (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/chardet/enums.pyR       s   t   MachineStatec           B   s    e  Z d  Z d Z d Z d Z RS(   sN   
    This enum represents the different states a state machine can be in.
    i    i   i   (   R   R   R   t   STARTt   ERRORt   ITS_ME(    (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/chardet/enums.pyR   )   s   t   SequenceLikelihoodc           B   s5   e  Z d  Z d Z d Z d Z d Z e d    Z RS(   sX   
    This enum represents the likelihood of a character following the previous one.
    i    i   i   i   c         C   s   d S(   s:   :returns: The number of likelihood categories in the enum.i   (    (   t   cls(    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/chardet/enums.pyt   get_num_categories;   s    (	   R   R   R   t   NEGATIVEt   UNLIKELYt   LIKELYt   POSITIVEt   classmethodR   (    (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/chardet/enums.pyR   2   s   t   CharacterCategoryc           B   s,   e  Z d  Z d Z d Z d Z d Z d Z RS(   s   
    This enum represents the different categories language models for
    ``SingleByteCharsetProber`` put characters into.

    Anything less than CONTROL is considered a letter.
    i   i   i   i   i   (   R   R   R   t	   UNDEFINEDt
   LINE_BREAKt   SYMBOLt   DIGITt   CONTROL(    (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/chardet/enums.pyR    A   s   N(   R   t   objectR    R   R   R   R   R    (    (    (    s   /builddir/build/BUILDROOT/alt-python27-pip-20.2.4-5.el8.x86_64/opt/alt/python27/lib/python2.7/site-packages/pip/_vendor/chardet/enums.pyt   <module>   s   			