OXIESEC PANEL
- Current Dir:
/
/
opt
/
gsutil
/
third_party
/
requests
/
src
/
requests
/
__pycache__
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/11/2025 08:19:49 AM
rwxr-xr-x
📄
__init__.cpython-39.pyc
3.78 KB
02/11/2025 08:19:49 AM
rw-r--r--
📄
__version__.cpython-39.pyc
506 bytes
02/11/2025 08:19:49 AM
rw-r--r--
📄
_internal_utils.cpython-39.pyc
1.54 KB
02/11/2025 08:19:49 AM
rw-r--r--
📄
adapters.cpython-39.pyc
21.48 KB
02/11/2025 08:19:49 AM
rw-r--r--
📄
api.cpython-39.pyc
6.59 KB
02/11/2025 08:19:49 AM
rw-r--r--
📄
auth.cpython-39.pyc
8.12 KB
02/11/2025 08:19:49 AM
rw-r--r--
📄
certs.cpython-39.pyc
577 bytes
02/11/2025 08:19:49 AM
rw-r--r--
📄
compat.cpython-39.pyc
1.69 KB
02/11/2025 08:19:49 AM
rw-r--r--
📄
cookies.cpython-39.pyc
18.36 KB
02/11/2025 08:19:49 AM
rw-r--r--
📄
exceptions.cpython-39.pyc
6.42 KB
02/11/2025 08:19:49 AM
rw-r--r--
📄
hooks.cpython-39.pyc
946 bytes
02/11/2025 08:19:49 AM
rw-r--r--
📄
models.cpython-39.pyc
23.65 KB
02/11/2025 08:19:49 AM
rw-r--r--
📄
packages.cpython-39.pyc
573 bytes
02/11/2025 08:19:49 AM
rw-r--r--
📄
sessions.cpython-39.pyc
19.27 KB
02/11/2025 08:19:49 AM
rw-r--r--
📄
status_codes.cpython-39.pyc
4.16 KB
02/11/2025 08:19:49 AM
rw-r--r--
📄
structures.cpython-39.pyc
4.3 KB
02/11/2025 08:19:49 AM
rw-r--r--
📄
utils.cpython-39.pyc
23.91 KB
02/11/2025 08:19:49 AM
rw-r--r--
Editing: structures.cpython-39.pyc
Close
a jKWf` � @ sD d Z ddlmZ ddlmZmZ G dd� de�ZG dd� de�Zd S ) zO requests.structures ~~~~~~~~~~~~~~~~~~~ Data structures that power Requests. � )�OrderedDict� )�Mapping�MutableMappingc @ sb e Zd ZdZddd�Zdd� Zdd� Zd d � Zdd� Zd d� Z dd� Z dd� Zdd� Zdd� Z dS )�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 K s* t � | _|d u ri }| j|fi |�� d S �N)r �_store�update)�self�data�kwargs� r �;/opt/gsutil/third_party/requests/src/requests/structures.py�__init__( s zCaseInsensitiveDict.__init__c C s ||f| j |�� <