| 145 | |
| 146 | |
| 147 | class NullContextmanager(object): |
| 148 | |
| 149 | def __init__(self, *args, **kwargs): |
| 150 | pass |
| 151 | |
| 152 | def __enter__(self): |
| 153 | pass |
| 154 | |
| 155 | def __exit__(self, type_arg, value_arg, traceback_arg): |
| 156 | return False # False values do not suppress exceptions |
| 157 | |
| 158 | |
| 159 | def _override_helper(clazz_object, operator, func): |
no outgoing calls
no test coverage detected