Issue #17861: Allow generate_opcode_h to run with a system Python 2.5.
Patch by David Bolen.
diff --git a/Tools/scripts/generate_opcode_h.py b/Tools/scripts/generate_opcode_h.py
index a329a40..efa18a1 100644
--- a/Tools/scripts/generate_opcode_h.py
+++ b/Tools/scripts/generate_opcode_h.py
@@ -1,5 +1,7 @@
 # This script generates the opcode.h header file.
 
+from __future__ import with_statement
+
 import sys
 header = """/* Auto-generated by Tools/scripts/generate_opcode_h.py */
 #ifndef Py_OPCODE_H