(f)
| 142 | |
| 143 | # This is the actual decorator we'll return |
| 144 | def decor(f): |
| 145 | for label in labels: |
| 146 | setattr(f,label,True) |
| 147 | return f |
| 148 | |
| 149 | # Apply the user's docstring, or autogenerate a basic one |
| 150 | if ds is None: |
nothing calls this directly
no outgoing calls
no test coverage detected