/
niceSOFT
/
python3-requests
Обзор
Документация
Войти
/
niceSOFT
/
python3-requests
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.24.0
tests/__init__.py
13 строк
369 B
Kenneth Reitz
fix __init__.py
27 май 2017, 05:53
27 май 2017, 05:53
47f170b
Код
Авторство
О чём код?
# -*- coding: utf-8 -*- """Requests test package initialisation.""" import warnings import urllib3 from urllib3.exceptions import SNIMissingWarning # urllib3 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)