(self, name)
| 84 | self.__context = context |
| 85 | |
| 86 | def __getitem__(self, name): |
| 87 | blocks = self.__context.blocks[name] |
| 88 | return BlockReference(name, self.__context, blocks, 0) |
| 89 | |
| 90 | def __repr__(self): |
| 91 | return '<%s %r>' % ( |
nothing calls this directly
no test coverage detected