(*docstr)
| 179 | |
| 180 | |
| 181 | def add_end_docstrings(*docstr): |
| 182 | def docstring_decorator(fn): |
| 183 | fn.__doc__ = fn.__doc__ + "".join(docstr) |
| 184 | return fn |
| 185 | |
| 186 | return docstring_decorator |
| 187 | |
| 188 | |
| 189 | PT_TOKEN_CLASSIFICATION_SAMPLE = r""" |
nothing calls this directly
no outgoing calls
no test coverage detected