| Home | Trees | Indices | Help |
|
|---|
|
|
Deprecation utilities.
| Classes | |
|
DeprecationWrapper proxy to print a warning on access to any attribute of the wrapped object... |
|
|
DeprecationManager Manage the deprecation message handling. |
|
| Functions | |||
|
|||
|
|||
|
|||
|
|||
| Variables | |
class_deprecated = _defaultdeprecator.class_deprecated()
|
|
| Function Details |
automatically creates a class which fires a DeprecationWarning
when instantiated.
>>> Set = class_renamed('Set', set, 'Set is now replaced by set')
>>> s = Set()
sample.py:57: DeprecationWarning: Set is now replaced by set
s = Set()
>>>
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Fri Dec 8 00:00:57 2017 | http://epydoc.sourceforge.net |