Enter this control flow context.
(self)
| 725 | |
| 726 | # pylint: disable=protected-access |
| 727 | def Enter(self): |
| 728 | """Enter this control flow context.""" |
| 729 | graph = ops.get_default_graph() |
| 730 | self._context_stack.append(graph._get_control_flow_context()) |
| 731 | graph._set_control_flow_context(self) |
| 732 | |
| 733 | def Exit(self): |
| 734 | """Exit this control flow context.""" |
no test coverage detected