forked from fkarb/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwarnfilter.py
More file actions
19 lines (16 loc) · 886 Bytes
/
warnfilter.py
File metadata and controls
19 lines (16 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# ===========================================================================
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
# ===========================================================================
"""Warnfilter
"""
from warnings import filterwarnings
from warnings import resetwarnings
def addClrWarnfilter(action="ignore", append=False):
msgs = ["^The CLR module is deprecated.*", "^Importing from the CLR\.\* namespace.*"]
for msg in msgs:
filterwarnings(action, msg, category=DeprecationWarning, append=append)