commit | bb815499af855b1759c02535f8d7a9d0358e74e8 | [log] [tgz] |
---|---|---|
author | Claudiu Popa <pcmanticore@gmail.com> | Thu Dec 05 04:14:26 2019 +0100 |
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | Wed Dec 04 19:14:26 2019 -0800 |
tree | 1ee1d5c2c5377e0a8ed71a9153af4c76b6824d6d | |
parent | 8b787964e0a647caa0558b7c29ae501470d727d9 [diff] |
bpo-38698: Prevent UnboundLocalError to pop up in parse_message_id (GH-17277) parse_message_id() was improperly using a token defined inside an exception handler, which was raising `UnboundLocalError` on parsing an invalid value. https://bugs.python.org/issue38698