* feat: Add deprecation_dumpster.py file * docs: add jovial and jocose docstring for frappe/deprecation_dumpster.py * refactor: fill the dumpster with its own kind * refactor: move to the deprecation dumpster * chore: color coding class * fix: only check import error when import errors
12 lines
331 B
Python
12 lines
331 B
Python
"""Utils for deprecating functionality in Framework.
|
|
|
|
WARNING: This file is internal, instead of depending just copy the code or use deprecation
|
|
libraries.
|
|
"""
|
|
|
|
from frappe.deprecation_dumpster import (
|
|
_old_deprecated as deprecated,
|
|
)
|
|
from frappe.deprecation_dumpster import (
|
|
_old_deprecation_warning as deprecation_warning,
|
|
)
|