diff options
author | Rémi Lapeyre <remi.lapeyre@henki.fr> | 2019-01-24 19:43:13 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-01-24 19:43:13 (GMT) |
commit | 1fd06f1eca80dcbf3a916133919482a8327f3da4 (patch) | |
tree | 01c702f00536f7dbec9c1a5ad2e71af482c145fe /Misc | |
parent | 5c8f537669d3379fc50bb0a96accac756e43e281 (diff) | |
download | cpython-1fd06f1eca80dcbf3a916133919482a8327f3da4.zip cpython-1fd06f1eca80dcbf3a916133919482a8327f3da4.tar.gz cpython-1fd06f1eca80dcbf3a916133919482a8327f3da4.tar.bz2 |
bpo-35717: Fix KeyError exception raised when using enums and compile (GH-11523)
https://bugs.python.org/issue17467
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-01-11-17-56-15.bpo-35717.6TDTB_.rst | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -906,6 +906,7 @@ Glenn Langford Andrew Langmead Wolfgang Langner Detlef Lannert +Rémi Lapeyre Soren Larsen Amos Latteier Piers Lauder diff --git a/Misc/NEWS.d/next/Library/2019-01-11-17-56-15.bpo-35717.6TDTB_.rst b/Misc/NEWS.d/next/Library/2019-01-11-17-56-15.bpo-35717.6TDTB_.rst new file mode 100644 index 0000000..7cae1d1 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-01-11-17-56-15.bpo-35717.6TDTB_.rst @@ -0,0 +1,2 @@ +Fix KeyError exception raised when using enums and compile. Patch +contributed by Rémi Lapeyre. |