opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
requests
/
__pycache__
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
__init__.cpython-312.pyc
5.26 KB
Rename
Delete
__version__.cpython-312.pyc
554 bytes
Rename
Delete
_internal_utils.cpython-312.pyc
1.95 KB
Rename
Delete
adapters.cpython-312.pyc
27.66 KB
Rename
Delete
api.cpython-312.pyc
6.99 KB
Rename
Delete
auth.cpython-312.pyc
13.57 KB
Rename
Delete
certs.cpython-312.pyc
636 bytes
Rename
Delete
compat.cpython-312.pyc
2.00 KB
Rename
Delete
cookies.cpython-312.pyc
24.58 KB
Rename
Delete
exceptions.cpython-312.pyc
7.38 KB
Rename
Delete
help.cpython-312.pyc
4.20 KB
Rename
Delete
hooks.cpython-312.pyc
1021 bytes
Rename
Delete
models.cpython-312.pyc
34.50 KB
Rename
Delete
packages.cpython-312.pyc
1.06 KB
Rename
Delete
sessions.cpython-312.pyc
27.16 KB
Rename
Delete
status_codes.cpython-312.pyc
5.85 KB
Rename
Delete
structures.cpython-312.pyc
5.46 KB
Rename
Delete
utils.cpython-312.pyc
35.47 KB
Rename
Delete
� (��g` � �P � d Z ddlmZ ddlmZmZ G d� de� Z G d� de� Zy ) zO requests.structures ~~~~~~~~~~~~~~~~~~~ Data structures that power Requests. � )�OrderedDict� )�Mapping�MutableMappingc �N � e Zd ZdZd d�Zd� Zd� Zd� Zd� Zd� Z d � Z d � Zd� Zd� Z y)�CaseInsensitiveDicta� A case-insensitive ``dict``-like object. Implements all methods and operations of ``MutableMapping`` as well as dict's ``copy``. Also provides ``lower_items``. All keys are expected to be strings. The structure remembers the case of the last key to be set, and ``iter(instance)``, ``keys()``, ``items()``, ``iterkeys()``, and ``iteritems()`` will contain case-sensitive keys. However, querying and contains testing is case insensitive:: cid = CaseInsensitiveDict() cid['Accept'] = 'application/json' cid['aCCEPT'] == 'application/json' # True list(cid) == ['Accept'] # True For example, ``headers['content-encoding']`` will return the value of a ``'Content-Encoding'`` response header, regardless of how the header name was originally stored. If the constructor, ``.update``, or equality comparison operations are given keys that have equal ``.lower()``s, the behavior is undefined. Nc �P � t � | _ |�i } | j |fi |�� y �N)r �_store�update)�self�data�kwargss �B/opt/hc_python/lib/python3.12/site-packages/requests/structures.py�__init__zCaseInsensitiveDict.__init__( s( � �!�m����<��D�����D�#�F�#� c �B � ||f| j |j � <