<!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>
B
    Re9                 @   sx   G d d de ZG dd deZG dd deZG dd deeZG dd	 d	eeZeZG d
d deZe Z	eZ
eZdS )c               @   s   e Zd ZdZdS )UnpackExceptionzBase class for some exceptions raised while unpacking.

    NOTE: unpack may raise exception other than subclass of
    UnpackException.  If you want to catch all error, catch
    Exception instead.
    N)__name__
__module____qualname____doc__ r   r   /builddir/build/BUILDROOT/alt-python37-pip-20.2.4-6.el8.x86_64/opt/alt/python37/lib/python3.7/site-packages/pip/_vendor/msgpack/exceptions.pyr      s   r   c               @   s   e Zd ZdS )
BufferFullN)r   r   r   r   r   r   r   r   
   s   r   c               @   s   e Zd ZdS )	OutOfDataN)r   r   r   r   r   r   r   r	      s   r	   c               @   s   e Zd ZdZdS )FormatErrorzInvalid msgpack formatN)r   r   r   r   r   r   r   r   r
      s   r
   c               @   s   e Zd ZdZdS )
StackErrorz
Too nestedN)r   r   r   r   r   r   r   r   r      s   r   c               @   s    e Zd ZdZdd Zdd ZdS )	ExtraDatazExtraData is raised when there is trailing data.

    This exception is raised while only one-shot (not streaming)
    unpack.
    c             C   s   || _ || _d S )N)unpackedextra)selfr   r   r   r   r   __init__%   s    zExtraData.__init__c             C   s   dS )Nzunpack(b) received extra data.r   )r   r   r   r   __str__)   s    zExtraData.__str__N)r   r   r   r   r   r   r   r   r   r   r      s   r   N)	Exceptionr   r   r	   
ValueErrorr
   r   UnpackValueErrorr   PackExceptionPackValueErrorOverflowErrorPackOverflowErrorr   r   r   r   <module>   s   	