Attach the function's signature. Args: function: The python function being documented. reverse_index: A map from object ids in the index to full names.
(self, function, reverse_index)
| 918 | return self._signature |
| 919 | |
| 920 | def set_signature(self, function, reverse_index): |
| 921 | """Attach the function's signature. |
| 922 | |
| 923 | Args: |
| 924 | function: The python function being documented. |
| 925 | reverse_index: A map from object ids in the index to full names. |
| 926 | """ |
| 927 | |
| 928 | assert self.signature is None |
| 929 | self._signature = _generate_signature(function, reverse_index) |
| 930 | |
| 931 | @property |
| 932 | def decorators(self): |
no test coverage detected