bpo-35717: Fix KeyError exception raised when using enums and compile (GH-11523)



https://bugs.python.org/issue17467
diff --git a/Misc/ACKS b/Misc/ACKS
index 81b51f7..c9fa08b 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -906,6 +906,7 @@
 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.