(self)
| 5526 | """A thread-local stack of objects for providing an implicit default graph.""" |
| 5527 | |
| 5528 | def __init__(self): |
| 5529 | super(_DefaultGraphStack, self).__init__() |
| 5530 | self._global_default_graph = None |
| 5531 | |
| 5532 | def get_default(self): |
| 5533 | """Override that returns a global default if the stack is empty.""" |