(*docstr)
| 153 | |
| 154 | |
| 155 | def add_start_docstrings(*docstr): |
| 156 | def docstring_decorator(fn): |
| 157 | fn.__doc__ = "".join(docstr) + (fn.__doc__ if fn.__doc__ is not None else "") |
| 158 | return fn |
| 159 | |
| 160 | return docstring_decorator |
| 161 | |
| 162 | |
| 163 | def add_start_docstrings_to_callable(*docstr): |
nothing calls this directly
no outgoing calls
no test coverage detected