()
| 308 | node.names = [] |
| 309 | |
| 310 | def parse_context(): |
| 311 | if self.stream.current.value in ('with', 'without') and \ |
| 312 | self.stream.look().test('name:context'): |
| 313 | node.with_context = next(self.stream).value == 'with' |
| 314 | self.stream.skip() |
| 315 | return True |
| 316 | return False |
| 317 | |
| 318 | while 1: |
| 319 | if node.names: |