Changeset: fc05f05d3640 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/fc05f05d3640 Modified Files: clients/mapilib/Tests/tlstester.py Branch: monetdburl Log Message:
Suppress DecrecationWarnings even harder diffs (14 lines): diff --git a/clients/mapilib/Tests/tlstester.py b/clients/mapilib/Tests/tlstester.py --- a/clients/mapilib/Tests/tlstester.py +++ b/clients/mapilib/Tests/tlstester.py @@ -20,9 +20,8 @@ from typing import Any, Callable, Dict, import warnings -from cryptography.utils import CryptographyDeprecationWarning with warnings.catch_warnings(): - warnings.filterwarnings('ignore', category=CryptographyDeprecationWarning) + warnings.filterwarnings('ignore', category=UserWarning) from cryptography import x509 from cryptography.hazmat.primitives import serialization, hashes from cryptography.hazmat.primitives.asymmetric import rsa _______________________________________________ checkin-list mailing list -- checkin-list@monetdb.org To unsubscribe send an email to checkin-list-le...@monetdb.org