lib64
/
python3.8
/
email
/
__pycache__
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
__init__.cpython-38.opt-1.pyc
1.65 KB
Rename
Delete
__init__.cpython-38.opt-2.pyc
1.04 KB
Rename
Delete
__init__.cpython-38.pyc
1.65 KB
Rename
Delete
_encoded_words.cpython-38.opt-1.pyc
5.55 KB
Rename
Delete
_encoded_words.cpython-38.opt-2.pyc
3.71 KB
Rename
Delete
_encoded_words.cpython-38.pyc
5.55 KB
Rename
Delete
_header_value_parser.cpython-38.opt-1.pyc
78.01 KB
Rename
Delete
_header_value_parser.cpython-38.opt-2.pyc
61.54 KB
Rename
Delete
_header_value_parser.cpython-38.pyc
78.06 KB
Rename
Delete
_parseaddr.cpython-38.opt-1.pyc
12.18 KB
Rename
Delete
_parseaddr.cpython-38.opt-2.pyc
9.29 KB
Rename
Delete
_parseaddr.cpython-38.pyc
12.18 KB
Rename
Delete
_policybase.cpython-38.opt-1.pyc
14.46 KB
Rename
Delete
_policybase.cpython-38.opt-2.pyc
5.84 KB
Rename
Delete
_policybase.cpython-38.pyc
14.46 KB
Rename
Delete
base64mime.cpython-38.opt-1.pyc
3.16 KB
Rename
Delete
base64mime.cpython-38.opt-2.pyc
1.43 KB
Rename
Delete
base64mime.cpython-38.pyc
3.16 KB
Rename
Delete
charset.cpython-38.opt-1.pyc
11.16 KB
Rename
Delete
charset.cpython-38.opt-2.pyc
4.98 KB
Rename
Delete
charset.cpython-38.pyc
11.19 KB
Rename
Delete
contentmanager.cpython-38.opt-1.pyc
7.19 KB
Rename
Delete
contentmanager.cpython-38.opt-2.pyc
7.19 KB
Rename
Delete
contentmanager.cpython-38.pyc
7.19 KB
Rename
Delete
encoders.cpython-38.opt-1.pyc
1.58 KB
Rename
Delete
encoders.cpython-38.opt-2.pyc
1.23 KB
Rename
Delete
encoders.cpython-38.pyc
1.58 KB
Rename
Delete
errors.cpython-38.opt-1.pyc
5.77 KB
Rename
Delete
errors.cpython-38.opt-2.pyc
4.37 KB
Rename
Delete
errors.cpython-38.pyc
5.77 KB
Rename
Delete
feedparser.cpython-38.opt-1.pyc
10.25 KB
Rename
Delete
feedparser.cpython-38.opt-2.pyc
8.62 KB
Rename
Delete
feedparser.cpython-38.pyc
10.39 KB
Rename
Delete
generator.cpython-38.opt-1.pyc
12.23 KB
Rename
Delete
generator.cpython-38.opt-2.pyc
8.62 KB
Rename
Delete
generator.cpython-38.pyc
12.23 KB
Rename
Delete
header.cpython-38.opt-1.pyc
16.06 KB
Rename
Delete
header.cpython-38.opt-2.pyc
10.56 KB
Rename
Delete
header.cpython-38.pyc
16.06 KB
Rename
Delete
headerregistry.cpython-38.opt-1.pyc
21.48 KB
Rename
Delete
headerregistry.cpython-38.opt-2.pyc
15.85 KB
Rename
Delete
headerregistry.cpython-38.pyc
21.53 KB
Rename
Delete
iterators.cpython-38.opt-1.pyc
1.88 KB
Rename
Delete
iterators.cpython-38.opt-2.pyc
1.27 KB
Rename
Delete
iterators.cpython-38.pyc
1.88 KB
Rename
Delete
message.cpython-38.opt-1.pyc
36.99 KB
Rename
Delete
message.cpython-38.opt-2.pyc
20.82 KB
Rename
Delete
message.cpython-38.pyc
36.99 KB
Rename
Delete
parser.cpython-38.opt-1.pyc
5.59 KB
Rename
Delete
parser.cpython-38.opt-2.pyc
2.64 KB
Rename
Delete
parser.cpython-38.pyc
5.59 KB
Rename
Delete
policy.cpython-38.opt-1.pyc
9.43 KB
Rename
Delete
policy.cpython-38.opt-2.pyc
3.36 KB
Rename
Delete
policy.cpython-38.pyc
9.43 KB
Rename
Delete
quoprimime.cpython-38.opt-1.pyc
7.50 KB
Rename
Delete
quoprimime.cpython-38.opt-2.pyc
4.11 KB
Rename
Delete
quoprimime.cpython-38.pyc
7.50 KB
Rename
Delete
utils.cpython-38.opt-1.pyc
9.32 KB
Rename
Delete
utils.cpython-38.opt-2.pyc
6.07 KB
Rename
Delete
utils.cpython-38.pyc
9.32 KB
Rename
Delete
U e5d�: � @ s� d Z ddlZddlmZ ddlmZ ddlmZ dddgZG d d � d �Z dd� Z d d� ZG dd� de ejd�Z eG dd� de ��Ze� ZdS )zwPolicy framework for the email package. Allows fine grained feature control of how the package parses and emits data. � N)�header)�charset)�_has_surrogates�Policy�Compat32�compat32c s@ e Zd ZdZ� fdd�Zdd� Zdd� Zdd � Zd d� Z� Z S )�_PolicyBasea� Policy Object basic framework. This class is useless unless subclassed. A subclass should define class attributes with defaults for any values that are to be managed by the Policy object. The constructor will then allow non-default values to be set for these attributes at instance creation time. The instance will be callable, taking these same attributes keyword arguments, and returning a new instance identical to the called instance except for those values changed by the keyword arguments. Instances may be added, yielding new instances with any non-default values from the right hand operand overriding those in the left hand operand. That is, A + B == A(<non-default values of B>) The repr of an instance can be used to reconstruct the object if and only if the repr of the values can be used to reconstruct those values. c sH |� � D ]:\}}t| |�r.tt| ��||� qtd�|| jj���qdS )z�Create new Policy, possibly overriding some defaults. See class docstring for a list of overridable attributes. �*{!r} is an invalid keyword argument for {}N) �items�hasattr�superr �__setattr__� TypeError�format� __class__�__name__)�self�kw�name�value�r � �)/usr/lib64/python3.8/email/_policybase.py�__init__) s ��z_PolicyBase.__init__c C s* dd� | j �� D �}d�| jjd�|��S )Nc S s g | ]\}}d � ||��qS )z{}={!r})r )�.0r r r r r � <listcomp>8 s �z(_PolicyBase.__repr__.<locals>.<listcomp>z{}({})z, )�__dict__r r r r �join)r �argsr r r �__repr__7 s �z_PolicyBase.__repr__c K sr | j �| j �}| j�� D ]\}}t�|||� q|�� D ]4\}}t| |�s^td�|| j j ���t�|||� q8|S )z�Return a new instance with specified attributes changed. The new instance has the same attribute values as the current object, except for the changes passed in as keyword arguments. r ) r �__new__r r �objectr r r r r )r r Z newpolicy�attrr r r r �clone<