Immediately unwind the context stack.
(self)
| 620 | return received_exc and suppressed_exc |
| 621 | |
| 622 | def close(self): |
| 623 | """Immediately unwind the context stack.""" |
| 624 | self.__exit__(None, None, None) |
| 625 | |
| 626 | |
| 627 | # Inspired by discussions on https://bugs.python.org/issue29302 |