Home | Trees | Indices | Help |
|
---|
|
Mutable, immutable and caching/memoizing properties and deprecation decorators.
To enable DeprecationWarning
s from
PyGeodesy
, set env var PYGEODESY_WARNINGS
to a
non-empty string AND run python
with command line
option -X dev
or with one of the -W
choices,
see callable DeprecationWarnings below.
Version: 24.10.19
Classes | |
Property_RO | |
Property | |
property_RO | |
property_ROnce | |
property_ROver |
Functions | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Variables | |
__all__ = _ALL_LAZY.props
|
|
DeprecationWarnings = DeprecationWarnings()
|
Function Details |
Decorator for a standard
Example: >>>class Clas(object): >>> >>> @property_doc_("documentation text.") >>> def name(self): >>> ... >>> >>> @name.setter >>> def name(self, value): >>> ... |
Use inside __new__ or __init__ of a DEPRECATED class.
Note: NOT a decorator! |
Decorator for a DEPRECATED function.
|
Decorator for a DEPRECATED method.
|
Decorator for a DEPRECATED Property_RO.
|
Decorator for a DEPRECATED property_RO.
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue Oct 22 17:06:19 2024 | http://epydoc.sourceforge.net |