Return the description for the callable to invoke.
(self)
| 91 | |
| 92 | @property |
| 93 | def doc(self): |
| 94 | """Return the description for the callable to invoke.""" |
| 95 | return self.meta.doc if self.meta.doc is not None else get_doc(self.wrapped) |
| 96 | |
| 97 | @property |
| 98 | def deprecated(self) -> str | None: |