OXIESEC PANEL
- Current Dir:
/
/
opt
/
gsutil
/
third_party
/
requests
/
tests
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/11/2024 09:39:44 AM
rwxr-xr-x
📄
__init__.py
469 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📁
certs
-
05/29/2024 03:36:10 PM
rwxr-xr-x
📄
compat.py
480 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
conftest.py
1.54 KB
05/29/2024 03:36:10 PM
rw-r--r--
📄
test_adapters.py
311 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
test_help.py
839 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
test_hooks.py
424 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
test_lowlevel.py
14.98 KB
05/29/2024 03:36:10 PM
rw-r--r--
📄
test_packages.py
229 bytes
05/29/2024 03:36:10 PM
rw-r--r--
📄
test_requests.py
102.05 KB
05/29/2024 03:36:10 PM
rw-r--r--
📄
test_structures.py
2.23 KB
05/29/2024 03:36:10 PM
rw-r--r--
📄
test_testserver.py
5.42 KB
05/29/2024 03:36:10 PM
rw-r--r--
📄
test_utils.py
28.67 KB
05/29/2024 03:36:10 PM
rw-r--r--
📁
testserver
-
05/29/2024 03:36:10 PM
rwxr-xr-x
📄
utils.py
366 bytes
05/29/2024 03:36:10 PM
rw-r--r--
Editing: __init__.py
Close
"""Requests test package initialisation.""" import warnings try: from urllib3.exceptions import SNIMissingWarning # urllib3 1.x sets SNIMissingWarning to only go off once, # while this test suite requires it to always fire # so that it occurs during test_requests.test_https_warnings warnings.simplefilter("always", SNIMissingWarning) except ImportError: # urllib3 2.0 removed that warning and errors out instead SNIMissingWarning = None