OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot
/
4737
/
lib
/
python3.12
/
site-packages
/
parsedatetime
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/12/2025 06:19:50 PM
rwxr-xr-x
📄
__init__.py
102.77 KB
06/12/2025 06:19:37 PM
rw-r--r--
📁
__pycache__
-
06/12/2025 06:19:48 PM
rwxr-xr-x
📄
context.py
4.54 KB
06/12/2025 06:19:37 PM
rw-r--r--
📄
parsedatetime.py
61 bytes
06/12/2025 06:19:37 PM
rw-r--r--
📁
pdt_locales
-
06/12/2025 06:19:48 PM
rwxr-xr-x
📄
warns.py
485 bytes
06/12/2025 06:19:37 PM
rw-r--r--
Editing: warns.py
Close
# -*- 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)