(self)
| 1793 | """A thread local store for the current variable scope and scope counts.""" |
| 1794 | |
| 1795 | def __init__(self): |
| 1796 | super(_VariableScopeStore, self).__init__() |
| 1797 | self.current_scope = VariableScope(False) |
| 1798 | self.variable_scopes_count = {} |
| 1799 | |
| 1800 | def open_variable_scope(self, scope_name): |
| 1801 | if scope_name in self.variable_scopes_count: |
nothing calls this directly
no test coverage detected