(cls, scope)
| 21 | |
| 22 | @classmethod |
| 23 | def push_scope(cls, scope): |
| 24 | if scope is not None: |
| 25 | push_scope(scope) |
| 26 | record_scope(sys._getframe().f_back.f_back, scope) |
| 27 | cls.scopes.append(scope) |
| 28 | |
| 29 | @classmethod |
| 30 | def pop_scope(cls): |
no test coverage detected