(self, func)
| 26 | self.name = name |
| 27 | |
| 28 | def __call__(self, func): |
| 29 | if self.name is None: |
| 30 | self.name = func.__name__ |
| 31 | return super().__call__(func) |
| 32 | |
| 33 | def __enter__(self): |
| 34 | if EMPROFILE == 2: |
nothing calls this directly
no outgoing calls
no test coverage detected