Last updated:
0 purchases
PythonDeprecated 1.1.0
Python @deprecated decorator to deprecate old python classes, functions or methods.
Deprecated is Easy to Use
If you need to mark a function or a method as deprecated,
you can use the @deprecated decorator:
Save in a hello.py:
from deprecated import deprecated
@deprecated
def some_old_function(x, y):
return x + y
class SomeClass(object):
@deprecated
def some_old_method(self, x, y):
return x + y
some_old_function(12, 34)
obj = SomeClass()
obj.some_old_method(5, 8)
And Easy to Setup
And run it:
$ pip install Python-Deprecated
$ python hello.py
hello.py:15: DeprecationWarning: Call to deprecated function some_old_function.
some_old_function(12, 34)
hello.py:17: DeprecationWarning: Call to deprecated function some_old_method.
obj.some_old_method(5, 8)
Links
website
StackOverFlow Question
development version
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.