The pyedb.misc.decorators library#

Summary#

deprecated_property

This decorator marks a property as deprecated.

deprecate_argument_name

Decorator to deprecate certain argument names in favor of new ones.

execution_timer

Module detail#

decorators.deprecated_property(func)#

This decorator marks a property as deprecated. It will emit a warning when the property is accessed.

decorators.deprecate_argument_name(argument_map)#

Decorator to deprecate certain argument names in favor of new ones.

decorators.execution_timer(custom_text)#