dbt-selly/dbt-env/lib/python3.8/site-packages/parsedatetime/warns.py

27 lines
485 B
Python
Raw Normal View History

2022-03-22 15:13:27 +00:00
# -*- coding: utf-8 -*-
"""
parsedatetime/warns.py
All subclasses inherited from `Warning` class
"""
from __future__ import absolute_import
import warnings
class pdtDeprecationWarning(DeprecationWarning):
pass
class pdtPendingDeprecationWarning(PendingDeprecationWarning):
pass
class pdt20DeprecationWarning(pdtPendingDeprecationWarning):
pass
warnings.simplefilter('default', pdtDeprecationWarning)
warnings.simplefilter('ignore', pdtPendingDeprecationWarning)