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