commit | eec9331b207cf7def6f04156d00a8479d1630dd3 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Thu Aug 18 18:13:10 2016 +0200 |
committer | Victor Stinner <victor.stinner@gmail.com> | Thu Aug 18 18:13:10 2016 +0200 |
tree | ce654c4b01d19f6b2bb1a3a05f961c07534e64c8 | |
parent | 54005afeeebddbd5b211307b743b591a4cdb7750 [diff] |
Fix SystemError in "raise" statement Issue #27558: Fix a SystemError in the implementation of "raise" statement. In a brand new thread, raise a RuntimeError since there is no active exception to reraise. Patch written by Xiang Zhang.